diff options
Diffstat (limited to '.app/lib/app-common')
-rw-r--r-- | .app/lib/app-common | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.app/lib/app-common b/.app/lib/app-common index 11e724b..584e053 100644 --- a/.app/lib/app-common +++ b/.app/lib/app-common @@ -33,8 +33,8 @@ assert_is_instance() { } list_apps() { - filter_name=$1 - shift + filter_name=$1; shift + filter_instnace=$1; shift vars="$@" sort $BASEDIR/.app/var/list | while read line @@ -46,6 +46,11 @@ list_apps() { continue fi + if [ -n "$filter_instance" -a "$filter_instance" != "$instance" ] + then + continue + fi + local line="" IFS=" "; for var in $vars do |