Skip to content

Commit

Permalink
fix: more portable bash usage (#37)
Browse files Browse the repository at this point in the history
* More portable bash usage

Use a more portable shebang

* Update nview.sh.gotmpl

* Update txtop.sh.gotmpl

* Update cardano-cli.sh.gotmpl
  • Loading branch information
Quantumplation authored Sep 23, 2024
1 parent f3ae996 commit 85c674b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/cardano-cli/files/cardano-cli.sh.gotmpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

declare -a valid_paths=(
"/Users"
Expand Down
2 changes: 1 addition & 1 deletion packages/cardano-node/files/nview.sh.gotmpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Run nview
docker exec \
Expand Down
2 changes: 1 addition & 1 deletion packages/cardano-node/files/txtop.sh.gotmpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Run nview
docker exec \
Expand Down
2 changes: 1 addition & 1 deletion packages/mithril-client/files/mithril-client.sh.gotmpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

declare -a _darwin_allowed_paths=(
"/Users"
Expand Down

0 comments on commit 85c674b

Please sign in to comment.