Skip to content

Commit

Permalink
Quote environment variables in integration/run.sh (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halsall authored Jun 9, 2021
1 parent b875fa3 commit d7d2ef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion harness/scripts/integration/run.sh.twig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

integration_run() {
{% for name, value in @('services.app.environment') -%}{{ name }}={{ value }} {% endfor %} LOG_LEVEL=error go test -count=1 -v --tags=integration ./integration/
{% for name, value in @('services.app.environment') -%}{{ name }}="{{ value }}" {% endfor %} LOG_LEVEL=error go test -count=1 -v --tags=integration ./integration/
}

integration_run

0 comments on commit d7d2ef0

Please sign in to comment.