diff options
author | quou <quou@disroot.org> | 2025-02-15 21:21:02 +1100 |
---|---|---|
committer | quou <quou@disroot.org> | 2025-02-15 21:21:02 +1100 |
commit | 3c2331f9038a8fecbc182e6ebf9216df659416f0 (patch) | |
tree | 0ee9493bd462270c62cf7dbd66e54bad425eba99 | |
parent | 72cecafc458fef351f9cc4495a006b68ec223a13 (diff) |
Fix the configuration in configure.lua on windows
-rw-r--r-- | configure.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.lua b/configure.lua index c80f230..3fa6f17 100644 --- a/configure.lua +++ b/configure.lua @@ -397,7 +397,7 @@ end if system == "windows" then local configuration = arg[2] - if system ~= "release" or system ~= "debug" then + if configuration ~= "release" and configuration ~= "debug" then print("Invalid configuration, defaulting to release.") end |