diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-11-14 10:03:04 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-11-14 10:03:04 +0100 |
commit | 7251ad7064f69e01bb5cfc9465ee968b714ac1ef (patch) | |
tree | a9274527dacbd2b42331c0296ff9d0a289e4a9a4 /scripts | |
parent | 7b23ed2098a6fa8f2741b6b5b84310fd9bb4f872 (diff) | |
parent | 0b3dfd5b3eb3eafb9fc731446e0c840e791c5c27 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/scan-tools.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh index 0b7b1d08c..a060d24fc 100644 --- a/scripts/scan-tools.sh +++ b/scripts/scan-tools.sh @@ -112,6 +112,12 @@ if ! which gzip >/dev/null 2>&1; then out=1 fi +if ! which bzip2 >/dev/null 2>&1; then + echo You must install bzip2 to continue. + echo + out=1 +fi + if ! which lzop >/dev/null 2>&1; then echo You must install lzop to continue. echo @@ -130,12 +136,6 @@ if ! which xz >/dev/null 2>&1; then out=1 fi -if ! which bzip2 >/dev/null 2>&1; then - echo You must install bzip2 to continue. - echo - out=1 -fi - if ! which patch >/dev/null 2>&1; then echo You must install patch to continue. echo |