Skip to content

Commit

Permalink
Remove quotes in the git arguments array.
Browse files Browse the repository at this point in the history
Each space-delimited argument should be it's own array element.

PiperOrigin-RevId: 200588214
GitOrigin-RevId: 06f935023158eb482e3e92a9c31bc4931c4ff107
  • Loading branch information
chuckx authored and Tink Team committed Jun 27, 2018
1 parent b6b6036 commit c17cf29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maven/execute-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ then
fi

declare -a GIT_ARGS
GIT_ARGS=('-c [email protected]' '-c user.name="Tink Team"')
GIT_ARGS=(-c [email protected] -c user.name="Tink Team")

library_output_file() {
library="$1"
Expand Down

0 comments on commit c17cf29

Please sign in to comment.