diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-10-22 13:38:14 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-10-22 13:38:14 +0200 |
commit | 290976157e7bac9a716421b18637450a74b3265d (patch) | |
tree | 18c74cb96f5e1eb7d6885764252c5bd30af76812 /dependency-test.sh | |
parent | 2775974decc4895743fa6e454754d6ca54c5696a (diff) | |
parent | a07dadb81348b61b19f9ca9760fcb1a7696c4d06 (diff) | |
download | ponysay-290976157e7bac9a716421b18637450a74b3265d.tar.gz ponysay-290976157e7bac9a716421b18637450a74b3265d.tar.bz2 ponysay-290976157e7bac9a716421b18637450a74b3265d.zip |
conflict resolve
Diffstat (limited to 'dependency-test.sh')
-rwxr-xr-x | dependency-test.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dependency-test.sh b/dependency-test.sh index 770873c..3c5301b 100755 --- a/dependency-test.sh +++ b/dependency-test.sh @@ -15,6 +15,7 @@ ro=0 (hash mkdir 2>/dev/null) || (br=1 ; echo 'Missing mkdir, install coreutils [build required]') (hash cp 2>/dev/null) || (br=1 ; echo 'Missing cp, install coreutils [build required]') (hash cut 2>/dev/null) || (br=1 ; echo 'Missing cut, install coreutils [build required]') +(hash chmod 2>/dev/null) || (br=1 ; echo 'Missing chmod, install coreutils [build required]') (hash bash 2>/dev/null) || (bs=1 ; echo 'Missing bash, install bash [build recommended]') @@ -32,6 +33,7 @@ ro=0 (hash tty2colourfultty 2>/dev/null) || (ro=1 ; echo 'Missing tty2colourfultty, install util-say [runtime optional]') (hash ponysay2ttyponysay 2>/dev/null) || (ro=1 ; echo 'Missing ponysay2ttyponysay, install util-say [runtime optional]') +(hash chmod 2>/dev/null) || (rr=1 ; echo 'Missing chmod, install coreutils [runtime optional]') ( (test $br = 1) || (test $rr = 1) || (test $ro = 1) ) && echo |