Skip to content
Snippets Groups Projects
Commit c31c0e52 authored by Daniel Speicher's avatar Daniel Speicher
Browse files

Fix missing quotes in IF statement

parent 4d1ec838
No related branches found
No related tags found
No related merge requests found
......@@ -136,7 +136,7 @@ ImportIntoDatacore:
- cd /data/${CI_COMMIT_REF_NAME}
- dc exec app curl --fail -X POST http://localhost:4100/api/import/basic
- dc exec app curl --fail -X POST http://localhost:4100/api/import/realestate
- if [[ "DATACORE_IMPORT_INTERNAL_USERS" == "yes ]]; then dc exec app curl --fail -X POST http://localhost:4100/api/import/internalusers; fi
- if [[ "DATACORE_IMPORT_INTERNAL_USERS" == "yes" ]]; then dc exec app curl --fail -X POST http://localhost:4100/api/import/internalusers; fi
variables:
GIT_STRATEGY: none
cache: {}
......
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