Skip to content

Commit 46e39f7

Browse files
committedDec 18, 2023
Use /usr/bin/env in shebang lines
This improves portability as not all systems have bash, perl, or python in /usr/bin (FreeBSD is one such example).
1 parent 9797c0d commit 46e39f7

File tree

53 files changed

+53
-53
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+53
-53
lines changed
 

‎.githooks/pre-commit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
# Runs scripts/cpplint.py on the modified files
33
# Based on https://github.com/s0enke/git-hooks/
44
#

‎.github/workflows/pull-request-check-clang-format.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Stop on errors
44
set -e

0 commit comments

Comments
 (0)