Skip to content

Commit

Permalink
Change bash to sh
Browse files Browse the repository at this point in the history
  • Loading branch information
drozdowsky committed Dec 12, 2019
1 parent f130e4b commit f8858dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ repos:
- id: migrations-check
language: system
name: Check for uncreated migrations.
entry: bash -c "./manage.py makemigrations --check --dry-run"
entry: sh -c "./manage.py makemigrations --check --dry-run"
files: "models\\.py$"
stages: [commit]

Expand All @@ -49,5 +49,5 @@ repos:
- id: gql-schema-check
language: system
name: Check for up-to-date GraphQL schema.
entry: bash -c "./manage.py get_graphql_schema | diff saleor/graphql/schema.graphql -"
entry: sh -c "./manage.py get_graphql_schema | diff saleor/graphql/schema.graphql -"
stages: [commit]
2 changes: 1 addition & 1 deletion scripts/push_static.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

# Push static to AWS S3

Expand Down

0 comments on commit f8858dc

Please sign in to comment.