Skip to content

Commit e29c517

Browse files
committed
Revert "replace bash shebang with '#!/usr/bin/env bash" for portability"
This reverts commit 86dace9.
1 parent 8cf2863 commit e29c517

18 files changed

Lines changed: 18 additions & 18 deletions

File tree

build/tfs/common/common.sh

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

44
# set agent specific npm cache

build/tfs/common/node.sh

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

44
# setup nvm

build/tfs/linux/build-ia32.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#!/usr/bin/env bash
1+
#!/bin/bash
22
set -e
33
./build/tfs/linux/build.sh ia32 "$@"

build/tfs/linux/build-x64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#!/usr/bin/env bash
1+
#!/bin/bash
22
set -e
33
./build/tfs/linux/build.sh x64 "$@"

build/tfs/linux/build.sh

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

33
. ./build/tfs/common/node.sh
44
. ./scripts/env.sh

build/tfs/linux/ia32/run-agent.sh

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

33
if [ ! -f pat ]; then
44
echo "Error: file pat not found"

build/tfs/linux/ia32/xvfb.init

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env bash
1+
#!/bin/bash
22
#
33
# /etc/rc.d/init.d/xvfbd
44
#

build/tfs/linux/release.sh

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

33
. ./scripts/env.sh
44
. ./build/tfs/common/common.sh

build/tfs/linux/smoketest.sh

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

44
. ./build/tfs/common/node.sh

build/tfs/linux/x64/run-agent.sh

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

33
if [ ! -f pat ]; then
44
echo "Error: file pat not found"

0 commit comments

Comments
 (0)