summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2011-03-19 16:49:16 -0400
committerJason A. Donenfeld <Jason@zx2c4.com>2011-03-19 16:49:16 -0400
commit7c835430f868a425785b8a7ca9bb94970c6c79b1 (patch)
tree9a3d2abe80153b70cc7ca11afc2bc32f05870fdc
parentBetter syncing. (diff)
downloadAuthor-7c835430f868a425785b8a7ca9bb94970c6c79b1.tar.xz
Author-7c835430f868a425785b8a7ca9bb94970c6c79b1.zip
Isolated syncing.
-rwxr-xr-xsyncbuildrun.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/syncbuildrun.sh b/syncbuildrun.sh
index 0d3ff3a..cd51ab6 100755
--- a/syncbuildrun.sh
+++ b/syncbuildrun.sh
@@ -1,5 +1,7 @@
-rsync --delete-excluded -av 192.168.1.100:Projects/Author/ . &&
-qmake -spec macx-g++ &&
+rsync --delete-excluded --exclude=build -av 192.168.1.100:Projects/Author/ .
+mkdir build
+cd build
+qmake -spec macx-g++ ../Author.pro &&
make &&
(killall Author; open Author.app)
-
+cd ..