Skip to content

Commit

Permalink
Backout '-S' option for /usr/bin/env on '#!' line
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Witten committed Sep 9, 2024
1 parent 13038f5 commit e2ca265
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S bash
#!/usr/bin/env bash

set -e

Expand Down
2 changes: 1 addition & 1 deletion lib/cli.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S bash
#!/usr/bin/env bash

_omb_module_require lib:utils

Expand Down
2 changes: 1 addition & 1 deletion tools/autossh.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S bash
#!/usr/bin/env bash
# ------------------------------------------------------------------------------
# FILE: autossh
# DESCRIPTION: This is an SSH-D proxy with auto-reconnect on disconnect
Expand Down
2 changes: 1 addition & 1 deletion tools/check_for_upgrade.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S bash
#!/usr/bin/env bash

function _omb_upgrade_current_epoch {
local sec=${EPOCHSECONDS-}
Expand Down
2 changes: 1 addition & 1 deletion tools/install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S bash
#!/usr/bin/env bash

# Checks the minium version of bash (v3.2) installed,
# stops the installation if check fails
Expand Down
2 changes: 1 addition & 1 deletion tools/update-wiki-themes.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S bash
#!/usr/bin/env bash

# this script aims to simplify the process of updating the theme examples page
# in the GitHub Wiki.
Expand Down
2 changes: 1 addition & 1 deletion tools/upgrade.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S bash
#!/usr/bin/env bash

function _omb_upgrade {
# Use colors, but only if connected to a terminal, and that terminal
Expand Down

0 comments on commit e2ca265

Please sign in to comment.