Skip to content

Commit

Permalink
docs: make src/docs/copy.sh shebang more portable
Browse files Browse the repository at this point in the history
`/bin/bash` is not guaranteed to exist on all systems. Replacing the
shebang with `/usr/bin/env bash` looks up the location of bash on such
systems.
  • Loading branch information
erooke committed Nov 12, 2024
1 parent 81056b5 commit e37880d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/copy.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
html_path=../../_doc/_html
# get name of internal library
lib_name=$(ls $html_path | grep kind2dev)
Expand Down

0 comments on commit e37880d

Please sign in to comment.