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
......@@ -55,14 +55,13 @@ hivemind_sync:
artifacts: true
variables:
GIT_STRATEGY: none
HIVEMIND_MAX_BLOCK: 50000
script:
- DB_NAME=${HIVEMIND_DB_NAME/-/_}
- DB_URL="$HIVEMIND_POSTGRESQL_CONNECTION_STRING/$HIVEMIND_DB_NAME"
- echo "Corrected db name: $DB_NAME"
- echo "Corrected db url: $DB_URL"
- "DB_NAME=${HIVEMIND_DB_NAME/-/_}"
- "DB_URL=$HIVEMIND_POSTGRESQL_CONNECTION_STRING/$HIVEMIND_DB_NAME"
- "echo Corrected db name $DB_NAME"
- "echo Corrected db url $DB_URL"
- ls -l dist/*
- rm -rf ./local-site
- mkdir -p `python3 -m site --user-site`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment