Skip to content

Commit

Permalink
install wrap script fix
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorbenei committed Apr 25, 2016
1 parent 0cdf10e commit 04ef48b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _scripts/install_wrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ codesigndoc_bin_path="${temp_dir}/codesigndoc"

codesigndoc_download_url="https://github.com/bitrise-tools/codesigndoc/releases/download/0.9.8/codesigndoc-Darwin-x86_64"
echo " * Downloading codesigndoc from (${codesigndoc_download_url}) to (${codesigndoc_bin_path}) ..."
curl -sfL "$codesigndoc_download_url > "${codesigndoc_bin_path}"
curl -sfL "$codesigndoc_download_url" > "${codesigndoc_bin_path}"
echo " * Making it executable ..."
chmod +x "${codesigndoc_bin_path}"
echo " * Running codesigndoc scan ..."
Expand Down
2 changes: 1 addition & 1 deletion _scripts/install_wrap.sh.template
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ codesigndoc_bin_path="${temp_dir}/codesigndoc"

codesigndoc_download_url="https://github.com/bitrise-tools/codesigndoc/releases/download/{{version}}/codesigndoc-Darwin-x86_64"
echo " * Downloading codesigndoc from (${codesigndoc_download_url}) to (${codesigndoc_bin_path}) ..."
curl -sfL "$codesigndoc_download_url > "${codesigndoc_bin_path}"
curl -sfL "$codesigndoc_download_url" > "${codesigndoc_bin_path}"
echo " * Making it executable ..."
chmod +x "${codesigndoc_bin_path}"
echo " * Running codesigndoc scan ..."
Expand Down

0 comments on commit 04ef48b

Please sign in to comment.