Skip to content

Commit

Permalink
fix shebang
Browse files Browse the repository at this point in the history
This makes the shebang mechanism much more reliable for distros which do
not ship bash in `/bin`, like Alpine Linux, NixOS etc.
  • Loading branch information
wucke13 committed Jan 16, 2021
1 parent c41d8d1 commit cf759b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion linux/flash-multi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
shopt -s extglob

# *********************************************************************
Expand Down
2 changes: 1 addition & 1 deletion linux/multi-bootreloader
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
shopt -s extglob

# *********************************************************************
Expand Down

0 comments on commit cf759b7

Please sign in to comment.