We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c5bcf2 commit 5423711Copy full SHA for 5423711
GDevelop.js/Gruntfile.js
@@ -7,12 +7,13 @@ module.exports = function (grunt) {
7
const useMinGW = grunt.option('use-MinGW') || false;
8
9
const possibleVariants = [
10
+ 'release',
11
'dev',
12
'debug',
13
'debug-assertions',
14
'debug-sanitizers',
15
];
- const variant = grunt.option('variant') || (grunt.option('dev') ? 'dev' : '');
16
+ const variant = grunt.option('variant') || (grunt.option('dev') ? 'dev' : 'release');
17
18
if (variant && possibleVariants.indexOf(variant) === -1) {
19
console.error(
0 commit comments