This commit is contained in:
2017-06-30 23:33:56 +02:00
parent 2d34e3e9eb
commit 270ff4bb40
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ import { Dockerfile } from '../mod_docker/index'
let npmDependencies = async (): Promise<void> => {
plugins.beautylog.info('now installing dependencies:')
if (await yarnAvailable.promise) {
await bash('yarn upgrade')
await bash('yarn install')
} else {
await bash('npm install')
}