diff options
author | Ben Sima <ben@bsima.me> | 2021-05-22 16:25:48 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-05-22 16:25:48 -0400 |
commit | 981d7ae9d05f8ce94eacc45e6b8eb46fdcd8c236 (patch) | |
tree | 002bfae832c76eeaf23c9a2cd6f27eefba0da48e /ghpatch | |
parent | 4685c6bd5a7afc598b1f130835253af42d496cfc (diff) |
fix arg count
Diffstat (limited to 'ghpatch')
-rwxr-xr-x | ghpatch | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ #!/usr/bin/env bash -if (( $# < 0 )) +if (( $# < 1 )) then echo "usage: ghpatch <github PR url>" fi |