Skip to content

Commit

Permalink
Convenient commands.
Browse files Browse the repository at this point in the history
  • Loading branch information
BB9z committed Sep 10, 2021
1 parent 5c32427 commit 650c381
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions 🎯 Compute ZIP Checksum.command
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh
set -euo pipefail
cd "$(dirname "$0")"
echo "$PWD"

swift package compute-checksum macosx/LAME.xcframework.zip
10 changes: 10 additions & 0 deletions 🎯 Make XCFramwork.command
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/sh
set -euo pipefail
cd "$(dirname "$0")/macosx"
echo "$PWD"

if [ -x "$(command -v xcpretty)" ]; then
./make-xcframework.sh | xcpretty
else
./make-xcframework.sh
fi

0 comments on commit 650c381

Please sign in to comment.