From 3b8f982dbd0cd1705b06c360b0efeac345f34ebb Mon Sep 17 00:00:00 2001 From: William Date: Wed, 13 Mar 2019 14:58:04 +1300 Subject: [PATCH] fix(build-system): Install docker binary when on macOS (#2775) --- gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gruntfile.js b/gruntfile.js index e7fd2d054..83d38b77a 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -305,7 +305,7 @@ function shell_downloadDockerBinary(p, a) { var ip = ((ps[p] === undefined) ? p : ps[p]); var ia = ((as[a] === undefined) ? a : as[a]); var binaryVersion = ((p === 'windows' ? '<%= shippedDockerVersionWindows %>' : '<%= shippedDockerVersion %>')); - if (p === 'linux') { + if (p === 'linux' || p === 'mac') { return [ 'if [ -f dist/docker ]; then', 'echo "Docker binary exists";',