From 1de29ba32926a1693cc424640cdec47f40ca08da Mon Sep 17 00:00:00 2001 From: Enric Morales Date: Thu, 11 Jul 2024 12:22:22 +0200 Subject: [PATCH] gruntfile: Allow a `none` `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": [] }; //---------------------------------------------------------------