Fix configure

Nakidai 2023-10-30 03:17:54 +03:00
parent b51afc628f
commit 42bddb2ee4
Signed by untrusted user who does not match committer: nakidai
GPG Key ID: 914675D395210A97
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -21,8 +21,8 @@ echo "Size: $SIZE"
echo "Start x: $DEFX" echo "Start x: $DEFX"
echo "Start y: $DEFY" echo "Start y: $DEFY"
if [ ! test -d config ]; then if ! test -d config; then
if [ test-f config ]; then if test -f config; then
rm config rm config
fi fi
mkdir config mkdir config