Skip to content

Commit

Permalink
Use more portable shebang (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtlynch authored Sep 27, 2024
1 parent f199eaa commit 2692500
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dev-scripts/build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Exit build script on first failure.
set -e
Expand Down
2 changes: 1 addition & 1 deletion dev-scripts/check-style
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Checks formatting for non-Python files.

Expand Down
2 changes: 1 addition & 1 deletion dev-scripts/fix-style
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Fixes formatting for non-Python files.

Expand Down
2 changes: 1 addition & 1 deletion dev-scripts/hooks/enable-hooks
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Run this to enable all git hooks for this project.

Expand Down
2 changes: 1 addition & 1 deletion dev-scripts/hooks/pre-commit
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
#!/usr/bin/env bash
./dev-scripts/build

0 comments on commit 2692500

Please sign in to comment.