Prevent generateASTNode from overwriting a file if it already exists

This commit is contained in:
apio 2022-08-26 18:18:34 +02:00
parent c52492f6c0
commit 26a8953060

View File

@ -5,6 +5,14 @@ if [ "$1" == "" ]; then
exit 1 exit 1
fi fi
if [ -f $1.cpp ]; then
exit 0
fi
if [ -f $1.h ]; then
exit 0
fi
touch $1.cpp touch $1.cpp
touch $1.h touch $1.h