From c7dc5de3069af4c3bd4b2e0e6675f947f156f569 Mon Sep 17 00:00:00 2001 From: flashwave <me@flash.moe> Date: Fri, 11 Apr 2025 19:02:37 +0000 Subject: [PATCH] That should've been install, not update. --- Makefile | 16 ++++++++++++---- VERSION | 2 +- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 19f21980..6fec01e9 100644 --- a/Makefile +++ b/Makefile @@ -10,14 +10,22 @@ ENV_FILE := .env TOOLS_DIR := tools 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 -npm: +npm_update: ${NPM_EXE} update --save migrate: diff --git a/VERSION b/VERSION index 534b600c..fc34e249 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -20250411 +20250411.1