summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolai Hähnle <nhaehnle@gmail.com>2009-08-27 23:00:49 +0200
committerNicolai Hähnle <nhaehnle@gmail.com>2009-08-27 23:00:49 +0200
commit5fbd288fe99b4e8e329a0af71cd2dab395f978f3 (patch)
tree4686353d1f479d0bdd47d2e7b4d7abb75e15ccd4
parentbe5bdcb654e19ce530b6fd78bb7ded4632f979db (diff)
dxo-wip-make: Default to silent build
-rwxr-xr-xdxo-wip-make10
1 files changed, 9 insertions, 1 deletions
diff --git a/dxo-wip-make b/dxo-wip-make
index 7f8d991..f0267f9 100755
--- a/dxo-wip-make
+++ b/dxo-wip-make
@@ -3,4 +3,12 @@
# Compiles the current project, makes a Work-in-Progress commit and upload
# to deadlights
-make -j10 && make install && git commit -a -m "WIP" && dxo-make deadlights
+descr="$*"
+
+if [ "$descr" != "" ]; then
+ descr="WIP: $descr"
+else
+ descr="WIP"
+fi
+
+make -s && make -s install && git commit -a -m "$descr" && dxo-make deadlights