From 9529eebcbcac1d27dace5c2951133ea7d48c9f8a Mon Sep 17 00:00:00 2001 From: Nakidai Date: Mon, 30 Oct 2023 03:17:54 +0300 Subject: [PATCH] Fix configure --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index d49594e..1daeb23 100755 --- a/configure +++ b/configure @@ -21,8 +21,8 @@ echo "Size: $SIZE" echo "Start x: $DEFX" echo "Start y: $DEFY" -if [ ! test -d config ]; then - if [ test-f config ]; then +if ! test -d config; then + if test -f config; then rm config fi mkdir config