Merge pull request #1226 from mdevlamynck/fix-scripts

Shell script improvements
This commit is contained in:
Ethan P 2020-10-04 13:49:50 -07:00 committed by GitHub
commit 3af7a6b082
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 5 deletions

2
assets/create.sh vendored
View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -euo pipefail
ASSET_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

4
tests/benchmarks/comparison.sh vendored Normal file → Executable file
View File

@ -1,4 +1,6 @@
#!/bin/bash
#!/usr/bin/env bash
cd "$(dirname "${BASH_SOURCE[0]}")"
if ! which hyperfine > /dev/null 2>&1; then
echo "'hyperfine' does not seem to be installed."

4
tests/benchmarks/run-benchmarks.sh vendored Normal file → Executable file
View File

@ -1,4 +1,6 @@
#!/bin/bash
#!/usr/bin/env bash
cd "$(dirname "${BASH_SOURCE[0]}")"
if ! which hyperfine > /dev/null 2>&1; then
echo "'hyperfine' does not seem to be installed."

View File

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

View File

@ -1,4 +1,6 @@
#!/bin/bash
#!/usr/bin/env bash
cd "$(dirname "${BASH_SOURCE[0]}")"
python="python3"
if ! command -v python3 &>/dev/null; then python="python"; fi