From 90336e324648c8954778cd972417fe8fcb5399f3 Mon Sep 17 00:00:00 2001 From: G3bE Date: Sat, 15 Feb 2020 20:06:02 +1000 Subject: [PATCH] Fixed projectSetup.sh --- .gitignore | 1 + projectSetup.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1342059..a443a64 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ zig-cache/ .idea/ +Project/* **/.DS_Store \ No newline at end of file diff --git a/projectSetup.sh b/projectSetup.sh index f22afe6..896ee4f 100755 --- a/projectSetup.sh +++ b/projectSetup.sh @@ -11,7 +11,7 @@ echo 'const Builder = @import("std").build.Builder; pub fn build(b: *Builder) void { const mode = b.standardReleaseOptions(); - const exe = b.addExecutable('"$PROJECT_NAME"', "src/main.zig"); + const exe = b.addExecutable("'"$PROJECT_NAME"'", "src/main.zig"); exe.setBuildMode(mode); exe.linkSystemLibrary("raylib"); exe.install();