Skip to content

Commit

Permalink
fix: 'zip -r' to 'zip -ry'
Browse files Browse the repository at this point in the history
  • Loading branch information
tamworth committed May 8, 2024
1 parent a7b3de1 commit 12a6346
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion iOS/APIExample-Audio/package_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ script_path="$( cd "$(dirname "$0")" ; pwd -P )"
echo $script_path
current_datetime=$(date +'%Y-%m-%d_%H-%M-%S')
echo $current_datetime
zip -r ${1}_Audio_${current_datetime}.zip .
zip -ry ${1}_Audio_${current_datetime}.zip .
2 changes: 1 addition & 1 deletion iOS/APIExample-OC/package_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ script_path="$( cd "$(dirname "$0")" ; pwd -P )"
echo $script_path
current_datetime=$(date +'%Y-%m-%d_%H-%M-%S')
echo $current_datetime
zip -r ${1}_OC_${current_datetime}.zip .
zip -ry ${1}_OC_${current_datetime}.zip .
2 changes: 1 addition & 1 deletion iOS/APIExample/package_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ script_path="$( cd "$(dirname "$0")" ; pwd -P )"
echo $script_path
current_datetime=$(date +'%Y-%m-%d_%H-%M-%S')
echo $current_datetime
zip -r ${1}_Swift_${current_datetime}.zip .
zip -ry ${1}_Swift_${current_datetime}.zip .

0 comments on commit 12a6346

Please sign in to comment.