change src, without running git hooks (expect failure)

pull/21/head
Webber 2020-01-18 23:18:05 +01:00
parent 7162b9f895
commit eb010adaf4
1 changed files with 2 additions and 1 deletions

View File

@ -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() {