Skip to content

Commit

Permalink
bintray: Fix upload command-line arguments
Browse files Browse the repository at this point in the history
The flags -a and -o were broken, and didn't do what they were supposed
to do.
  • Loading branch information
1 parent 19f5888 commit 570562d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/bintray/upload
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,11 @@ do
D) dist="$OPTARG" ;;
u) user="$OPTARG" ;;
k) key="$OPTARG" ;;
d) publish=false ;;
b) override=true ;;
P) publish=false ;;
o) override=true ;;
r) comp_release="$OPTARG" ;;
p) comp_prerelease="$OPTARG" ;;
p) arch="$OPTARG" ;;
a) arch="$OPTARG" ;;
N) in_docker=false ;; # This was already parsed, but still
h) usage ; exit 0 ;;
\?) usage_die ;;
Expand Down

0 comments on commit 570562d

Please sign in to comment.