Skip to content

Commit

Permalink
ci: Use sh instead of bash for config generation
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed May 19, 2019
1 parent b923a27 commit 1daff7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- run: git config --global user.name "ORY Continuous Integration"
- run: "git clone https://arekkas:$DOCS_TOKEN_PUSH@github.com/ory/docs.git ../docs"
- run: "cp ./docs/api.swagger.json ../docs/apis/oathkeeper.json"
- run: bash ./scripts/run-configuration.sh
- run: ./scripts/run-configuration.sh
- run: "cp configuration.md ../docs/docs/oathkeeper/configuration.md"
- run: "(cd ../docs && git add -A && git commit -a -m \"Updates ORY Oathkeeper Swagger definitions\" && git push origin) || exit 0"

Expand Down
2 changes: 1 addition & 1 deletion scripts/run-configuration.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

set -Eeuxo pipefail

Expand Down

0 comments on commit 1daff7f

Please sign in to comment.