summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2020-08-05 16:18:50 -0700
committerSean Whitton <spwhitton@spwhitton.name>2020-08-07 13:19:03 -0700
commit5239a5d235cbc7daf670373f19f20f1744abd242 (patch)
tree058c2a052e548ca91a1c05799d23d8ca32fc610e /bin
parent1c0488a3e92dc870130e60c3cf949ae252ae7036 (diff)
downloaddotfiles-5239a5d235cbc7daf670373f19f20f1744abd242.tar.gz
fix usage in rebuild-for-athena
Diffstat (limited to 'bin')
-rwxr-xr-xbin/rebuild-for-athena2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/rebuild-for-athena b/bin/rebuild-for-athena
index 0ef6aeb2..004fe5ee 100755
--- a/bin/rebuild-for-athena
+++ b/bin/rebuild-for-athena
@@ -16,7 +16,7 @@ GetOptions
"plus" => \$want_plus;
die "invalid options" if $want_minus and $want_plus;
$want_minus = 1 unless $want_minus or $want_plus;
-die "usage: [--minus|--plus] " . basename $0 . " CODENAME\n" unless @ARGV == 1;
+die "usage: " . basename $0 . " [--minus|--plus] CODENAME\n" unless @ARGV == 1;
my $codename = pop @ARGV;
my $branch = "athena/$codename";
my $git = Git::Wrapper->new(".");