Continued:
[jprojects-scripts.git] / .jprojects.sh
index 802e0ef57313f64d0748029a76a979902952fdee..ab449f225855b788b0e3af3b629ccf2c58c282a1 100644 (file)
@@ -19,6 +19,7 @@ LIBRARIES="jcore-utils jcore jcoreee \
        jmailer-ee \
        jcore-swing \
        jcustomer-core jcustomer-lib \
+       jbonuscard-core jbonuscard-lib \
        jproduct-core jproduct-lib \
        jshop-core jshop-lib \
        jshop-receipt-core jshop-receipt-lib"
@@ -47,14 +48,24 @@ ALL_PROJECTS="${THIS} ${LIBRARIES} ${APPLICATIONS} ${COMPANY_PROJECTS} ${UNMAINT
 # Own home directory
 declare -r JPROJECTS_HOME="${PWD}"
 
-# ant binary
+# All programs
 ANT_BIN=$(which ant 2>/dev/null)
+SCP_BIN=$(which scp 2>/dev/null)
+SSH_BIN=$(which ssh 2>/dev/null)
 
 # Check binary
 if [ -z "${ANT_BIN}" ]
 then
        echo "$0: Cannot find ANT binary."
        exit 1
+elif [ -z "${SCP_BIN}" ]
+then
+       echo "$0: Cannot find SCP binary."
+       exit 1
+elif [ -z "${SSH_BIN}" ]
+then
+       echo "$0: Cannot find SSH binary."
+       exit 1
 fi
 
 # Test on .git availability"