From 7b9dea4a1db2fed737599bf3de1e7f19009221da Mon Sep 17 00:00:00 2001 From: Roman Date: Fri, 26 Jun 2020 13:52:36 +0300 Subject: [PATCH] fix build pipeline (makefile renamed command: app-deps (master) -> install-deps) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 950f77ea84..ffdbb5bd71 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ compile-dev: yarn compile:main --cache yarn compile:renderer --cache -dev: app-deps compile-dev +dev: install-deps compile-dev yarn dev # run electron and watch files lint: @@ -41,10 +41,10 @@ lint: test-app: yarn test -app-deps: +install-deps: yarn install --frozen-lockfile -build: app-deps +build: install-deps yarn install ifeq "$(DETECTED_OS)" "Windows" yarn dist:win