diff options
author | OBATA Akio <obache@wizdas.com> | 2020-01-11 17:07:12 +0900 |
---|---|---|
committer | OBATA Akio <obache@wizdas.com> | 2020-01-11 17:07:12 +0900 |
commit | 3237e9ea17f1aec01ae9bb67066abbd94688b779 (patch) | |
tree | 77ee9a63dfda3738f689ae4910e5f6a25ed7f2f2 /scripts/cvsaddcurrentdir | |
parent | dd87cb8e2b7653856aee2f505137a6db65e1efe9 (diff) | |
download | tdesdk-3237e9ea17f1aec01ae9bb67066abbd94688b779.tar.gz tdesdk-3237e9ea17f1aec01ae9bb67066abbd94688b779.zip |
Fix test(1) portability
Signed-off-by: OBATA Akio <obache@wizdas.com>
Diffstat (limited to 'scripts/cvsaddcurrentdir')
-rwxr-xr-x | scripts/cvsaddcurrentdir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cvsaddcurrentdir b/scripts/cvsaddcurrentdir index 56185f27..669dcc8b 100755 --- a/scripts/cvsaddcurrentdir +++ b/scripts/cvsaddcurrentdir @@ -17,7 +17,7 @@ ask_for_adding() { echo read -p "Add file $file to cvs ? (y/n) " answer rest #if [ "$answer" != "y" ]; then echo $file; fi -if [ "$answer" == "y" ]; then cvs add $file; fi +if [ "$answer" = "y" ]; then cvs add $file; fi } |