Fix after build script for other platforms

This commit is contained in:
Kylart 2019-11-08 15:55:14 +01:00
parent 5915f5519c
commit 0a41454470
1 changed files with 3 additions and 1 deletions

View File

@ -23,4 +23,6 @@ function windows () {
}) })
} }
module.exports = actions[process.platform]() (
actions[process.platform] || (() => {})
)()