From 6db555a69cdb1bfc3b9ac12ce43cd6ddbd934deb Mon Sep 17 00:00:00 2001 From: Sascha Karnatz <122262394+sascha-karnatz@users.noreply.github.com> Date: Wed, 24 May 2023 11:39:29 +0200 Subject: [PATCH] Change command position of admin script linking Change the command position of the admin package link during the dummy app installation. Otherwise the alchemy:install - step will reinstall the package. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 4a76fcc28f..b034a4fc7a 100644 --- a/Rakefile +++ b/Rakefile @@ -44,13 +44,13 @@ namespace :alchemy do yarn install && \ yarn link && \ cd spec/dummy && \ - yarn link @alchemy_cms/admin && \ export RAILS_ENV=test && \ bin/rake db:create && \ bin/rake db:environment:set && \ bin/rake db:migrate:reset && \ bin/rails javascript:install:esbuild && \ bin/rails g alchemy:install --skip --skip-demo-files --auto-accept --skip-db-create && \ + yarn link @alchemy_cms/admin && \ bin/rails javascript:build && \ cd - BASH