Skip to content

Commit 13a2e76

Browse files
committed
Make bash script shebangs more portable
1 parent e791bc5 commit 13a2e76

File tree

133 files changed

+133
-133
lines changed

Some content is hidden

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

133 files changed

+133
-133
lines changed

etc/check-package-size.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -eu -o pipefail
44

etc/copy-packetline.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -euC -o pipefail
44

etc/corpus/clone-repos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Check if there is input on stdin
44
if [ -t 0 ]; then

gix-archive/tests/fixtures/basic.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
set -eu -o pipefail
33

44
git init

gix-attributes/tests/fixtures/make_attributes_baseline.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
set -eu -o pipefail
33

44
mkdir basics;

gix-command/tests/fixtures/win_path_lookup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
set -eu -o pipefail
33

44
mkdir a b c

gix-commitgraph/tests/fixtures/generation_number_overflow.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
set -eu -o pipefail
33

44
function tick () {

gix-commitgraph/tests/fixtures/octopus_merges.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
set -eu -o pipefail
33

44
git init -q

gix-commitgraph/tests/fixtures/single_commit.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
set -eu -o pipefail
33

44
# The goal with this repo is to have the smallest commit-graph file possible, in the hopes that an

gix-commitgraph/tests/fixtures/single_commit_huge_dates.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
set -eu -o pipefail
33

44
function setup_repo() {

0 commit comments

Comments
 (0)