Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

Changes to scripts that were removed from package.json of engine #99

Merged
merged 1 commit into from
Jun 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions assets/scripts/check-engine-deployment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ cd "$ENGINE_FOLDER" || exit

export MYSQL_HOST=localhost
export MYSQL_PORT=3304
DB_STATUS=$(npm run check-db-exists-only)
DB_STATUS=$(npx cross-env ts-node --swc scripts/check-db-exists-only.ts)
DB_EXISTS=false
if [[ $DB_STATUS == *"database found"* ]]; then
DB_EXISTS=true
Expand All @@ -42,7 +42,7 @@ else
export MYSQL_PORT=3306
npm run dev-docker
npm run dev-reinit
npm run install-projects
npx ts-node --swc scripts/install-projects.js
fi

echo "Ethereal Engine docker images build starting"
Expand Down