From: Brendan Hansen Date: Mon, 4 Jan 2021 01:52:12 +0000 (-0600) Subject: stupid shell single vs double quotes X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=91cb6bd52b4f93193d0619a5346e01c55fbb2822;p=onyx.git stupid shell single vs double quotes --- diff --git a/build.sh b/build.sh index 69b090ae..dd39ecf4 100644 --- a/build.sh +++ b/build.sh @@ -6,7 +6,7 @@ CC='gcc' FLAGS='-O3 -I./include' BUILD_DIR='./build' -mkdir -p '$BUILD_DIR' +mkdir -p "$BUILD_DIR" for file in $C_FILES ; do echo "Compiling $file.c"