Change shebang in bash scripts

This commit is contained in:
Pedro Pombeiro 2019-03-01 14:24:23 +01:00
parent 87a7aacd68
commit 3af25381e1
No known key found for this signature in database
GPG Key ID: C4A24185B2AA48A1
12 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Copyright (C) 2016, Canonical Ltd.
# All rights reserved.

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Copyright (C) 2016, Canonical Ltd.
# All rights reserved.

View File

@ -1825,7 +1825,7 @@
);
runOnlyForDeploymentPostprocessing = 1;
shellPath = /bin/sh;
shellScript = "#!/bin/bash\n\nsource \"${PROJECT_DIR}/scripts/set_xcode_version.sh\"";
shellScript = "#!/usr/bin/env bash\n\nsource \"${PROJECT_DIR}/scripts/set_xcode_version.sh\"";
};
/* End PBXShellScriptBuildPhase section */

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This script automatically sets the version and short version string of
# an Xcode project from the Git repository containing the project.

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
export GOROOT=$2
export GOPATH=$3

View File

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

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
filename=$1
#fileid="1yPTGcPe5DZd3ubzAgUBp3aAQRAOK9eKQ"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -eof pipefail

View File

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

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
RED='\033[0;31m'
GREEN='\033[0;32m'

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
RED='\033[0;31m'
GREEN='\033[0;32m'

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
APPIUM_LOG="/var/log/appium.log"
CMD="appium --log $APPIUM_LOG"