From 6baea6e14bf5f75a8b7f7ec71a4a8112bac9adca Mon Sep 17 00:00:00 2001 From: Suwako Moriya Date: Sun, 28 Apr 2019 21:45:00 +0200 Subject: [PATCH] forgot --ofline flag on yarn --- app-editors/vscode/vscode-1.33.1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app-editors/vscode/vscode-1.33.1.ebuild b/app-editors/vscode/vscode-1.33.1.ebuild index 105bdc6..398d784 100644 --- a/app-editors/vscode/vscode-1.33.1.ebuild +++ b/app-editors/vscode/vscode-1.33.1.ebuild @@ -34,10 +34,10 @@ src_prepare() { } src_compile() { - yarn --use-yarnrc ${WORKDIR}/.yarnrc config set yarn-offline-mirror ${WORKDIR}/offline-cache - yarn --use-yarnrc ${WORKDIR}/.yarnrc config set yarn-offline-mirror-pruning true - yarn --use-yarnrc ${WORKDIR}/.yarnrc install || die "yarn install failed" - yarn --use-yarnrc ${WORKDIR}/.yarnrc compile || die "yarn compile failed" + yarn --use-yarnrc ${WORKDIR}/.yarnrc config set yarn-offline-mirror ${WORKDIR}/offline-cache --offline + yarn --use-yarnrc ${WORKDIR}/.yarnrc config set yarn-offline-mirror-pruning true --offline + yarn --use-yarnrc ${WORKDIR}/.yarnrc install --offline || die "yarn install failed" + yarn --use-yarnrc ${WORKDIR}/.yarnrc compile --offline || die "yarn compile failed" } src_install() {