File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ drush-sync-db: ## Sync database
152152 $(call drush,sql-drop --quiet -y)
153153ifeq ($(DUMP_SQL_EXISTS ) ,yes)
154154 $(call step,Import local SQL dump...)
155- $(call drush,sql-query --file=${ DOCKER_PROJECT_ROOT} /$(DUMP_SQL_FILENAME) && echo 'SQL dump imported')
155+ $(call drush,sql-query --file=$( DOCKER_PROJECT_ROOT) /$(DUMP_SQL_FILENAME) && echo 'SQL dump imported')
156156else
157157ifeq ($(SYNC_FROM_REMOTE ) ,yes)
158158 $(call step,Sync database from @$(DRUPAL_SYNC_SOURCE)...)
Original file line number Diff line number Diff line change 1- js-install JS_PACKAGE_MANAGER=npm PACKAGE_JSON_PATH=custom PACKAGE_JSON_EXISTS=yes NODE_VERSION=20
1+ js-install JS_PACKAGE_MANAGER=npm PACKAGE_JSON_PATH=custom PACKAGE_JSON_EXISTS=yes NODE_VERSION=20 NVM=yes
22---
33printf "\n⭐ \033[0;33mRun 'npm install --no-audit --no-fund --engine-strict true' with Node 20...\n\033[0m\n"
44. __HOME__/.nvm/nvm.sh && (nvm which 20 > /dev/null 2>&1 || nvm install 20) && nvm exec 20 npm --prefix custom install --no-audit --no-fund --engine-strict true
Original file line number Diff line number Diff line change 1- js-install PACKAGE_JSON_PATH=custom PACKAGE_JSON_EXISTS=yes NODE_VERSION=20
1+ js-install PACKAGE_JSON_PATH=custom PACKAGE_JSON_EXISTS=yes NODE_VERSION=20 NVM=yes
22---
33printf "\n⭐ \033[0;33mRun 'yarn install --frozen-lockfile' with Node 20...\n\033[0m\n"
44. __HOME__/.nvm/nvm.sh && (nvm which 20 > /dev/null 2>&1 || nvm install 20) && nvm exec 20 yarn --cwd custom install --frozen-lockfile
Original file line number Diff line number Diff line change 1- js-install INSTALLED_NODE_VERSION=18 NODE_VERSION=18 PACKAGE_JSON_EXISTS=yes
1+ js-install INSTALLED_NODE_VERSION=18 NODE_VERSION=18 PACKAGE_JSON_EXISTS=yes NVM=yes
22---
33printf "\n⭐ \033[0;33mRun 'yarn install --frozen-lockfile' with Node 18...\n\033[0m\n"
44. __HOME__/.nvm/nvm.sh && (nvm which 18 > /dev/null 2>&1 || nvm install 18) && nvm exec 18 yarn --cwd . install --frozen-lockfile
You can’t perform that action at this time.
0 commit comments