Skip to content

Commit

Permalink
chore: Use /bin/sh for /script/diff
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed May 23, 2024
1 parent a3c6f2b commit 0ba882f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions script/diff
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env bash
# No -e, because diff fails.
set -uo pipefail
#!/bin/sh

# No -e, because diff uses exit status 1 if differences were found.
set -u

curl -sS https://raw.githubusercontent.com/open-contracting/standard_profile_template/latest/docs/conf.py | diff -u - docs/conf.py

Expand Down

0 comments on commit 0ba882f

Please sign in to comment.