-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.9.8, with updated install wrap script
- Loading branch information
1 parent
1fa67db
commit 0cdf10e
Showing
4 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
#!/bin/bash | ||
set -e | ||
set -x | ||
|
||
echo " * Creating a temporary directory for codesigndoc ..." | ||
temp_dir="$(mktemp -d -t codesigndoc)" | ||
codesigndoc_bin_path="${temp_dir}/codesigndoc" | ||
|
||
cd "$temp_dir" | ||
|
||
curl -sfL https://github.com/bitrise-tools/codesigndoc/releases/download/0.9.7/codesigndoc-Darwin-x86_64 > ./codesigndoc | ||
chmod +x ./codesigndoc | ||
./codesigndoc scan | ||
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}" | ||
echo " * Making it executable ..." | ||
chmod +x "${codesigndoc_bin_path}" | ||
echo " * Running codesigndoc scan ..." | ||
${codesigndoc_bin_path} scan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters