Skip to content
Snippets Groups Projects
Commit 334a2d9a authored by Bartek Wrona's avatar Bartek Wrona
Browse files

Fixed syntax caused by unescaped colon characters

parent fe72f1fb
No related branches found
No related tags found
4 merge requests!456Release candidate v1 24,!230Setup monitoring with pghero,!135Enable postgres monitoring on CI server,!38Hivemind ci separate sync
This commit is part of merge request !38. Comments created here will be created in the context of that merge request.
...@@ -55,14 +55,13 @@ hivemind_sync: ...@@ -55,14 +55,13 @@ hivemind_sync:
artifacts: true artifacts: true
variables: variables:
GIT_STRATEGY: none GIT_STRATEGY: none
HIVEMIND_MAX_BLOCK: 50000 HIVEMIND_MAX_BLOCK: 50000
script: script:
- DB_NAME=${HIVEMIND_DB_NAME/-/_} - "DB_NAME=${HIVEMIND_DB_NAME/-/_}"
- DB_URL="$HIVEMIND_POSTGRESQL_CONNECTION_STRING/$HIVEMIND_DB_NAME" - "DB_URL=$HIVEMIND_POSTGRESQL_CONNECTION_STRING/$HIVEMIND_DB_NAME"
- echo "Corrected db name: $DB_NAME" - "echo Corrected db name $DB_NAME"
- echo "Corrected db url: $DB_URL" - "echo Corrected db url $DB_URL"
- ls -l dist/* - ls -l dist/*
- rm -rf ./local-site - rm -rf ./local-site
- mkdir -p `python3 -m site --user-site` - mkdir -p `python3 -m site --user-site`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment