Skip to content
Snippets Groups Projects
Commit dc5d8a24 authored by George Nachman's avatar George Nachman
Browse files

Fix build scripts to make a symlink before signing

parent d886644d
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -49,9 +49,6 @@ function Build {
# since Sparkle won't accept a name change.
rm -rf iTerm.app
mv iTerm2.app iTerm.app
pushd iTerm.app/Contents/MacOS
ln -s iTerm2 iTerm
popd
zip -ry iTerm2-${NAME}.zip iTerm.app
# Update the list of changes
Loading
Loading
@@ -84,7 +81,13 @@ ORIG_DIR=`pwd`
echo "Build deployment release"
make clean
make release
Build Deployment "" "OS 10.8+" "This is the recommended beta build for most users. It contains a bunch of bug fixes, including fixes for some crashers." "" "--deep"
BUILDTYPE=Deployment
pushd build/$BUILDTYPE/iTerm.app/Contents/MacOS
ln -s iTerm2 iTerm
popd
Build $BUILDTYPE "" "OS 10.8+" "This is the recommended beta build for most users. It contains a bunch of bug fixes, including fixes for some crashers." "" "--deep"
 
echo Update the linky in the version3 release notes page
sleep 2
Loading
Loading
Loading
Loading
@@ -49,9 +49,6 @@ function Build {
# since Sparkle won't accept a name change.
rm -rf iTerm.app
mv iTerm2.app iTerm.app
pushd iTerm.app/Contents/MacOS
ln -s iTerm2 iTerm
popd
zip -ry iTerm2-${NAME}.zip iTerm.app
# Update the list of changes
Loading
Loading
@@ -84,7 +81,13 @@ ORIG_DIR=`pwd`
echo "Build deployment release"
make clean
make preview
Build Deployment "-preview" "OS 10.8+" "This is the recommended beta build for most users. It contains a bunch of bug fixes, including fixes for some crashers." "" "--deep"
BUILDTYPE=Deployment
pushd build/$BUILDTYPE/iTerm.app/Contents/MacOS
ln -s iTerm2 iTerm
popd
Build $BUILDTYPE "-preview" "OS 10.8+" "This is the recommended beta build for most users. It contains a bunch of bug fixes, including fixes for some crashers." "" "--deep"
 
#set -x
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment