Skip to content

Commit ab407dd

Browse files
authored
fix: script had bad interpreter path due to changes for linting (#159)
Linting changes introduced in #158 changed the shell on the script from the universally available `/bin/sh` to `/usr/bin/env/bash` which does not exist. This change points the script to `/bin/bash` which should exist in GHA.
1 parent 07e27af commit ab407dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/generate_version_checksums.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env/bash
1+
#!/bin/bash
22

33
set -euo pipefail
44

0 commit comments

Comments
 (0)