compatibility for for bash versions <4.0
diff --git a/pregelix/pregelix-dist/src/main/resources/scripts/startcc.sh b/pregelix/pregelix-dist/src/main/resources/scripts/startcc.sh
index 74b3e29..41026a6 100644
--- a/pregelix/pregelix-dist/src/main/resources/scripts/startcc.sh
+++ b/pregelix/pregelix-dist/src/main/resources/scripts/startcc.sh
@@ -95,4 +95,4 @@
 
 printf "\n\n\n********************************************\nStarting CC with command %s\n\n" "${cmd[*]}" >> "$CCLOGS_DIR/cc.log"
 #Start the pregelix CC
-${cmd[@]} &>> "$CCLOGS_DIR/cc.log" &
+${cmd[@]} >> "$CCLOGS_DIR/cc.log" 2>&1 &