Prevent generateASTNode from overwriting a file if it already exists
This commit is contained in:
parent
c52492f6c0
commit
26a8953060
@ -5,6 +5,14 @@ if [ "$1" == "" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -f $1.cpp ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ -f $1.h ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
touch $1.cpp
|
||||
touch $1.h
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user