Skip to content

Commit

Permalink
gruntfile: Allow an empty platform to skip platform-specific tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
kiike committed Jul 11, 2024
1 parent 15d4513 commit 404da6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ module.exports = function (grunt) {


//-- Get the specific task to perform for the current platform
let distPlatformTasks = DIST_PLATFORM_TASKS[platform];
let distPlatformTasks = DIST_PLATFORM_TASKS[platform] || [];

//-- Special case: For the AARCH64, the platform is set to Linux64
/*if (platform === TARGET_AARCH64) {
Expand Down

0 comments on commit 404da6a

Please sign in to comment.