File tree Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ SOURCE=build/Devlog/linux64/
4+ DEST=build/devlog-linux64.tar.gz
5+
6+ echo " Building for linux64"
7+ tar -zcvf $DEST -c ${SOURCE}
8+ echo " Build destination: $DEST "
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ SOURCE=build/Devlog/osx64/
4+ DEST=build/devlog-osx64.dmg
5+ TITLE=Devlog
6+
7+ echo " Building for osx 64"
8+ hdiutil create $DEST -volname " ${TITLE} " -fs HFS+ -srcfolder " ${SOURCE} "
9+ echo " Build destination: $DEST "
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ SOURCE=build/Devlog/win64/
4+ DEST=build/devlog-win64.zip
5+
6+ echo " Building for win 64"
7+
8+ cd ${SOURCE} && zip -ru ../../devlog-win64.zip ./*
9+
10+ echo " Build destination: $DEST "
You can’t perform that action at this time.
0 commit comments