Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix builds #84

Merged
merged 2 commits into from
Dec 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion script/bootstrap
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
# script/bootstrap: Resolve all dependencies that the application requires to run.
set -euo pipefail
set -eu

if [ -z "${CI:-}" ]; then
name=${PWD##*/}
Expand Down
2 changes: 1 addition & 1 deletion script/deploy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
set -euo pipefail
set -eu

echo "==> Checking out master..."
git checkout master
Expand Down
2 changes: 1 addition & 1 deletion script/test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
set -euo pipefail
set -eu
pre-commit run --all-files
pytest
2 changes: 1 addition & 1 deletion script/update
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
# Based on conventions from https://github.com/github/scripts-to-rule-them-all
# script/update: Update application to run for its current checkout.
set -euo pipefail
set -eu

if [ -z "${SKIP_BOOTSTRAP:-}" ]; then
./script/bootstrap
Expand Down