You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2013/03/14 21:23:08 UTC

[4/7] git commit: rename rebuild.bash to rebuild-all.bash with more helpfulness

rename rebuild.bash to rebuild-all.bash with more helpfulness


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/9e231eee
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/9e231eee
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/9e231eee

Branch: refs/heads/db/5973
Commit: 9e231eee64f4d99c03812a56efd47de17d849c32
Parents: 1137dc3
Author: Dave Brondsema <db...@geek.net>
Authored: Thu Mar 14 10:39:02 2013 -0700
Committer: Dave Brondsema <db...@geek.net>
Committed: Thu Mar 14 10:39:02 2013 -0700

----------------------------------------------------------------------
 rebuild-all.bash |    9 +++++++++
 rebuild.bash     |    8 --------
 2 files changed, 9 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/9e231eee/rebuild-all.bash
----------------------------------------------------------------------
diff --git a/rebuild-all.bash b/rebuild-all.bash
new file mode 100755
index 0000000..61b02c6
--- /dev/null
+++ b/rebuild-all.bash
@@ -0,0 +1,9 @@
+#!/bin/bash
+for APP in Allura* *Forge* NoWarnings
+do
+    echo "# setting up $APP dependencies"
+    pushd $APP > /dev/null
+    python setup.py -q develop || echo "    # Error setting up $APP
+    # You may want to run 'pip uninstall $APP' to un-register it so you don't get further errors."
+    popd > /dev/null
+done

http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/9e231eee/rebuild.bash
----------------------------------------------------------------------
diff --git a/rebuild.bash b/rebuild.bash
deleted file mode 100755
index f1d80a1..0000000
--- a/rebuild.bash
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-for APP in Allura* *Forge* NoWarnings
-do
-    echo "# setting up $APP dependencies"
-    pushd $APP > /dev/null
-    python setup.py -q develop || exit
-    popd > /dev/null
-done