That should've been install, not update.

This commit is contained in:
flash 2025-04-11 19:02:37 +00:00
parent e8dcd5b878
commit c7dc5de306
Signed by: flash
GPG key ID: 2C9C2C574D47FE3E
2 changed files with 13 additions and 5 deletions

View file

@ -10,14 +10,22 @@ ENV_FILE := .env
TOOLS_DIR := tools TOOLS_DIR := tools
VENDOR_DIR := vendor VENDOR_DIR := vendor
all: update migrate clear-cache build cron all: install migrate clear-cache build cron
update: composer npm install: composer_install npm_install
composer: composer_install:
${PHP_EXE} ${COMPOSER_EXE} install
npm_install:
${NPM_EXE} ci
update: composer_update npm_update
composer_update:
${PHP_EXE} ${COMPOSER_EXE} update ${PHP_EXE} ${COMPOSER_EXE} update
npm: npm_update:
${NPM_EXE} update --save ${NPM_EXE} update --save
migrate: migrate:

View file

@ -1 +1 @@
20250411 20250411.1