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
cat<<EEE
installer-scripts --update | --install <app_name> | --list
EEE
printHelp;
exit 1;
fi
appRoot=$(readlink -f $(dirname $(readlink -f $0))/.. );
. "$appRoot/lib/installer_common";
printHelp(){
cat<<EOF
installer-scripts --update | --check | --install <app_name> | --list
EOF
}
printPackages(){
cd "$appRoot/packages";
ls;

Loading…
Cancel
Save