Revert "replace bash shebang with '#!/usr/bin/env bash" for portability"

This reverts commit 86dace91a2.
This commit is contained in:
Daniel Imms 2017-10-06 09:33:22 -07:00
parent 8cf286389b
commit e29c517386
18 changed files with 18 additions and 18 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
set -e
# set agent specific npm cache

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
set -e
# setup nvm

View file

@ -1,3 +1,3 @@
#!/usr/bin/env bash
#!/bin/bash
set -e
./build/tfs/linux/build.sh ia32 "$@"

View file

@ -1,3 +1,3 @@
#!/usr/bin/env bash
#!/bin/bash
set -e
./build/tfs/linux/build.sh x64 "$@"

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
. ./build/tfs/common/node.sh
. ./scripts/env.sh

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
if [ ! -f pat ]; then
echo "Error: file pat not found"

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
#
# /etc/rc.d/init.d/xvfbd
#

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
. ./scripts/env.sh
. ./build/tfs/common/common.sh

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
set -e
. ./build/tfs/common/node.sh

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
if [ ! -f pat ]; then
echo "Error: file pat not found"

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
#
# /etc/rc.d/init.d/xvfbd
#

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
#
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
export npm_config_disturl=https://atom.io/download/electron
export npm_config_target=$(node -p "require('./package.json').electronVersion")
export npm_config_runtime=electron

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
if [[ "$OSTYPE" == "darwin"* ]]; then
realpath() { [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"; }

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
set -e
if [[ "$OSTYPE" == "darwin"* ]]; then

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
if [[ "$OSTYPE" == "darwin"* ]]; then
realpath() { [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"; }

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
if [[ "$OSTYPE" == "darwin"* ]]; then

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
terminateTree() {
for cpid in $(/usr/bin/pgrep -P $1); do