From eb010adaf41e7266fe4382e08e44a099a6c0d352 Mon Sep 17 00:00:00 2001 From: Webber Date: Sat, 18 Jan 2020 23:18:05 +0100 Subject: [PATCH] change src, without running git hooks (expect failure) --- src/model/action.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/model/action.js b/src/model/action.js index 9397a9a5..3140ec5e 100644 --- a/src/model/action.js +++ b/src/model/action.js @@ -2,7 +2,8 @@ import path from 'path'; export default class Action { static get supportedPlatforms() { - return ['linux']; + const platform = 'linux'; + return [platform]; } static get isRunningLocally() {