From 3b691a58c432af898d0bdbdca98697fcf7fb6628 Mon Sep 17 00:00:00 2001 From: niyumard Date: Wed, 19 Apr 2023 18:25:37 +0330 Subject: [PATCH] Revert "/bin/bash -> /usr/bin/env bash" This reverts commit 76349f8350d7551e70da8533bcd7daffcad9795a. --- tools/build | 2 +- tools/build-loop | 2 +- tools/format | 2 +- tools/generate | 2 +- tools/measure | 2 +- tools/serve | 2 +- tools/test | 2 +- tools/upload | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tools/build b/tools/build index 1aca25b..4f66902 100755 --- a/tools/build +++ b/tools/build @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash set -e diff --git a/tools/build-loop b/tools/build-loop index 02d70d5..5384701 100755 --- a/tools/build-loop +++ b/tools/build-loop @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash TRAPPING=0 trap "{ echo finishing; TRAPPING=1; }" SIGINT diff --git a/tools/format b/tools/format index c104525..457b13f 100755 --- a/tools/format +++ b/tools/format @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash set -eo pipefail diff --git a/tools/generate b/tools/generate index be41375..af897e5 100755 --- a/tools/generate +++ b/tools/generate @@ -1,3 +1,3 @@ -#!/usr/bin/env bash +#!/bin/bash exec go run tools/generate.go $@ diff --git a/tools/measure b/tools/measure index 39d583b..f62c578 100755 --- a/tools/measure +++ b/tools/measure @@ -1,3 +1,3 @@ -#!/usr/bin/env bash +#!/bin/bash exec go run tools/measure.go diff --git a/tools/serve b/tools/serve index 1d4b594..baf68d1 100755 --- a/tools/serve +++ b/tools/serve @@ -1,3 +1,3 @@ -#!/usr/bin/env bash +#!/bin/bash exec go run tools/serve.go diff --git a/tools/test b/tools/test index c380515..c0c9c55 100755 --- a/tools/test +++ b/tools/test @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash # Sanity testing of the examples. diff --git a/tools/upload b/tools/upload index c00a2ab..5ca34ef 100755 --- a/tools/upload +++ b/tools/upload @@ -1,3 +1,3 @@ -#!/usr/bin/env bash +#!/bin/bash exec go run tools/upload.go -region us-east-1 -bucket gobyexample.com