From 3906e26f814f4a614d4e951b2dd2baae517252e4 Mon Sep 17 00:00:00 2001 From: Vitalij Mik Date: Thu, 14 Dec 2023 16:35:44 +0100 Subject: [PATCH] NTR: Set fixed version of shopware cli (#668) Co-authored-by: Vitalij Mik --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 6bee99266..3a03e127c 100644 --- a/makefile +++ b/makefile @@ -25,7 +25,7 @@ prod: ## Installs all production dependencies @composer validate @composer install --no-dev cd src/Resources/app/administration && npm install --omit=dev - cd src/Resources/app/storefront && npm install --production + cd src/Resources/app/storefront && npm install --omit=dev dev: ## Installs all dev dependencies php switch-composer.php dev @@ -33,7 +33,7 @@ dev: ## Installs all dev dependencies @composer install cd src/Resources/app/administration && npm install cd src/Resources/app/storefront && npm install - curl -1sLf 'https://dl.cloudsmith.io/public/friendsofshopware/stable/setup.deb.sh' | sudo -E bash && sudo apt install shopware-cli + curl -1sLf 'https://dl.cloudsmith.io/public/friendsofshopware/stable/setup.deb.sh' | sudo -E bash && sudo apt install shopware-cli=0.3.18 install: ## [deprecated] Installs all production dependencies. Please use "make prod" now. @make prod -B