killbill-memoizeit

Changes

bin/db-helper 5(+4 -1)

Details

bin/db-helper 5(+4 -1)

diff --git a/bin/db-helper b/bin/db-helper
index cc8b746..5a8d82a 100755
--- a/bin/db-helper
+++ b/bin/db-helper
@@ -35,6 +35,9 @@ TEST_ALSO=
 DDL_FILE=
 CLEAN_FILE=
 
+# Egrep like for skipping some modules until they are ready
+SKIP="(usage|server)"
+
 function usage() {
     echo -n "./db_helper "
     echo -n " -a <create|clean|dump>"
@@ -48,7 +51,7 @@ function usage() {
 }
 
 function get_modules() {
-    local modules=`grep module $POM  | grep -v modules | cut -d '>' -f 2 | cut -d '<' -f 1`
+    local modules=`grep module $POM  | grep -v modules | cut -d '>' -f 2 | cut -d '<' -f 1 | egrep -v "$SKIP"`
     echo $modules
 }