/bin/bash -> /usr/bin/env bash (#471)
Using env offers better portability
This commit is contained in:
parent
363849f9e3
commit
cb2d0d9555
@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
TRAPPING=0
|
TRAPPING=0
|
||||||
trap "{ echo finishing; TRAPPING=1; }" SIGINT
|
trap "{ echo finishing; TRAPPING=1; }" SIGINT
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -eo pipefail
|
set -eo pipefail
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
exec go run tools/generate.go $@
|
exec go run tools/generate.go $@
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
exec go run tools/measure.go
|
exec go run tools/measure.go
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
exec go run tools/serve.go
|
exec go run tools/serve.go
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Sanity testing of the examples.
|
# Sanity testing of the examples.
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
exec go run tools/upload.go -region us-east-1 -bucket gobyexample.com
|
exec go run tools/upload.go -region us-east-1 -bucket gobyexample.com
|
||||||
|
Loading…
x
Reference in New Issue
Block a user