aboutsummaryrefslogtreecommitdiff
path: root/tests/fuse-unmount.bash
diff options
context:
space:
mode:
authorAnkush Patel2026-02-17 20:11:19 +1300
committerAnkush Patel2026-02-17 20:15:53 +1300
commit3a5675480b1ac35c938a4776240b16c20ec134ff (patch)
treeeab9331694c76103e1d3b6aa844e6e66afeff38c /tests/fuse-unmount.bash
parent8d8fb15f0b3680add1f3b28c062b573a92221ab0 (diff)
Freebsd-support: Change bash shebang to use /usr/bin/env
Diffstat (limited to 'tests/fuse-unmount.bash')
-rwxr-xr-xtests/fuse-unmount.bash5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/fuse-unmount.bash b/tests/fuse-unmount.bash
index b36f28c..02c6e4c 100755
--- a/tests/fuse-unmount.bash
+++ b/tests/fuse-unmount.bash
@@ -1,10 +1,13 @@
-#!/bin/bash -eu
+#!/usr/bin/env bash
#
# Compatibility wrapper around "fusermount" on Linux and "umount" on
# Mac OS X and friends.
#
# This script can be sourced or executed directly.
#
+
+set -eu
+
fuse-unmount() {
local MYNAME=$(basename "$BASH_SOURCE")
if [[ $# -eq 0 ]] ; then