diff options
author | Daniel Baumann <daniel@debian.org> | 2012-09-29 15:42:38 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-09-29 15:42:38 +0200 |
commit | 68331c3f970e0d613dcd3d05460cce29676c4848 (patch) | |
tree | efb31e785304529a7212ac3c2b658a72362cca33 /share | |
parent | 8cd449e67cc1f95aa0c580e8d4817e9137cc1c70 (diff) | |
download | vyos-live-build-68331c3f970e0d613dcd3d05460cce29676c4848.tar.gz vyos-live-build-68331c3f970e0d613dcd3d05460cce29676c4848.zip |
Correcting 'not-enough-arguments' check in Packages grep-aptavail helper.
Diffstat (limited to 'share')
-rwxr-xr-x | share/bin/Packages | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/bin/Packages b/share/bin/Packages index 33d94fffa..a839e9a14 100755 --- a/share/bin/Packages +++ b/share/bin/Packages @@ -17,7 +17,7 @@ then exit 1 fi -if [ -z "${@}" ] +if [ -z "${2}" ] then echo "Usage: $(basename ${0}) FIELD VALUE" |