]> git.armaanb.net Git - asd-repo.git/blobdiff - kiss-serv/files/kiss-send-build
mutt: remove /etc/Mutt*
[asd-repo.git] / kiss-serv / files / kiss-send-build
index f819dc01459c07ffab7c7bc5f92c62a5d4161e01..4e650e7d660377263908f381e7d67b08c56a5dfe 100755 (executable)
@@ -5,22 +5,23 @@ usage() {
 build KISS packages on a remote server
 
 Options:
-  -h, --help    show this help message
+  -h, --help        show this help message
 
 Subcommands:
   build [package]   initiate a remote build
   status            get current remote status
+  status [package]  get current remote status of a package
   get [package]     receive a built package
 
 Configuration:
   Done via environment variables
 
-  $KISS_SERV_HOST    remote host to connect to
-                       (defaults to localhost)
-  $KISS_SERV_USER    remote host to connect to
-                       (defaults to $(whoami))
-  $KISS_SERV_PORT    remote port to connect to
-                       (defaults to 22)'
+  $KISS_SERV_HOST   remote host to connect to
+                      (defaults to localhost)
+  $KISS_SERV_USER   remote host to connect to
+                      (defaults to $(whoami))
+  $KISS_SERV_PORT   remote port to connect to
+                      (defaults to 22)'
 }
 
 parse_err() {
@@ -57,7 +58,7 @@ while [ "$1" != "" ]; do
       sshexec "$@"
       ;;
     get)
-      get "$@"
+      "$1" "$@"
       ;;
     *)
       parse_err "ERROR: unknown option $1 \n" usage