scripts: make shebang more portable (#2216)
Some Linux distros (like NixOS) don't place bash in /bin/bash.
This commit is contained in:
parent
fbae1e77e4
commit
51f967a548
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Copyright (c) 2018-2019 Status Research & Development GmbH. Licensed under
|
# Copyright (c) 2018-2019 Status Research & Development GmbH. Licensed under
|
||||||
# either of:
|
# either of:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Copyright (c) 2020 Status Research & Development GmbH. Licensed under
|
# Copyright (c) 2020 Status Research & Development GmbH. Licensed under
|
||||||
# either of:
|
# either of:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Copyright (c) 2018-2020 Status Research & Development GmbH. Licensed under
|
# Copyright (c) 2018-2020 Status Research & Development GmbH. Licensed under
|
||||||
# either of:
|
# either of:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Simple build script to produce an Emscripten-based wasm version of the state
|
# Simple build script to produce an Emscripten-based wasm version of the state
|
||||||
# sim.
|
# sim.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Simple build script to produce an Emscripten-based wasm version of the state
|
# Simple build script to produce an Emscripten-based wasm version of the state
|
||||||
# sim.
|
# sim.
|
||||||
|
|
Loading…
Reference in New Issue