learn how to write sh correctly
This commit is contained in:
parent
7b9099df6b
commit
463736ca60
1 changed files with 3 additions and 3 deletions
|
@ -1,12 +1,12 @@
|
|||
#!/bin/sh
|
||||
|
||||
if ! -f NEWS ; then
|
||||
if [ ! -f NEWS ] ; then
|
||||
touch NEWS
|
||||
fi
|
||||
if ! -f AUTHORS ; then
|
||||
if [ ! -f AUTHORS ] ; then
|
||||
touch AUTHORS
|
||||
fi
|
||||
if ! -f ChangeLog ; then
|
||||
if [ ! -f ChangeLog ] ; then
|
||||
touch ChangeLog
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue