Browse Source

Fix update help messages

master
Harish.K 10 years ago
parent
commit
967ba909c3
  1. 10
      bin/installer-script.sh

10
bin/installer-script.sh

@ -2,15 +2,19 @@
if [ -z "$1" ]; then if [ -z "$1" ]; then
cat<<EEE
installer-scripts --update | --install <app_name> | --list
EEE
printHelp;
exit 1; exit 1;
fi fi
appRoot=$(readlink -f $(dirname $(readlink -f $0))/.. ); appRoot=$(readlink -f $(dirname $(readlink -f $0))/.. );
. "$appRoot/lib/installer_common"; . "$appRoot/lib/installer_common";
printHelp(){
cat<<EOF
installer-scripts --update | --check | --install <app_name> | --list
EOF
}
printPackages(){ printPackages(){
cd "$appRoot/packages"; cd "$appRoot/packages";
ls; ls;

Loading…
Cancel
Save