We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80ce9fd commit afb6065Copy full SHA for afb6065
publish.sh
@@ -24,6 +24,7 @@ echo "- Type '$EXEC_NAME --help' into terminal to verify installation" >> $READM
24
cp .build/release/Executable ./$PACKAGE_NAME/$EXEC_NAME
25
26
tar -cvzf macOS-sierra.tar.gz ./$PACKAGE_NAME
27
+HASH=$(shasum -a 256 macOS-sierra.tar.gz | cut -d " " -f 1)
28
29
echo "📦 Drag and drop $PWD/macOS-sierra.tar.gz into https://github.com/vapor/toolbox/releases/edit/$TAG"
30
@@ -36,6 +37,7 @@ while true; do
36
37
esac
38
done
39
40
+echo "The new hash for the formula is $HASH"
41
rm -rf macOS-sierra.tar.gz
42
rm -rf $PACKAGE_NAME
43
rm install
0 commit comments