]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Tweak updateavatarurl.php: emit a newline whether we're on verbose or non-quiet,...
authorBrion Vibber <brion@status.net>
Tue, 8 Dec 2009 16:28:44 +0000 (08:28 -0800)
committerBrion Vibber <brion@status.net>
Tue, 8 Dec 2009 16:30:30 +0000 (08:30 -0800)
scripts/updateavatarurl.php

index dfcfc118cf7f0129d95b8560e0d3a874d78458f2..617c2e24c744233990b651010bb09fe45138d1ca 100644 (file)
@@ -60,7 +60,8 @@ try {
             }
         }
     } else {
-        throw new Exception("You have to provide an ID or nickname or 'all'.");
+        show_help();
+        exit(1);
     }
 } catch (Exception $e) {
     print $e->getMessage()."\n";
@@ -123,6 +124,9 @@ function updateAvatars($user)
     }
 
     if (have_option('v', 'verbose')) {
-        print "DONE.\n";
+        print "DONE.";
+    }
+    if (!have_option('q', 'quiet') || have_option('v', 'verbose')) {
+        print "\n";
     }
 }