From 626d740f2b48d95b76859c0fc3f84bf16e383540 Mon Sep 17 00:00:00 2001 From: Enric Morales Date: Thu, 11 Jul 2024 12:22:22 +0200 Subject: [PATCH] gruntfile: Allow an empty `platform` to skip platform-specific tasks --- Gruntfile.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index d3bfeaaa..d062b365 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -525,7 +525,11 @@ module.exports = function (grunt) { "copy:aarch64", //-- Copy the Linux build dir to ARM build dir "shell:mergeAarch64", "compress:Aarch64" - ] + ], + + //-- NO TARGET + //-- Use this to skip running platform-specific tasks + "none": [] }; //---------------------------------------------------------------