diff --git a/_scripts/install_wrap.sh b/_scripts/install_wrap.sh index 0b10e82d..673a4ed5 100644 --- a/_scripts/install_wrap.sh +++ b/_scripts/install_wrap.sh @@ -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 ..." diff --git a/_scripts/install_wrap.sh.template b/_scripts/install_wrap.sh.template index 98685100..647a300e 100644 --- a/_scripts/install_wrap.sh.template +++ b/_scripts/install_wrap.sh.template @@ -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 ..."