Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Replace #!/bin/bash with #!/usr/bin/env bash #618

Merged
merged 1 commit into from
Jul 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plutus-chain-index-core/notes/ConnectingToTheTestnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ You need to download the configurations for the node, genesis blocks and the top
I am using a shell script to start the node that I will paste here:

```shell
#!/bin/bash
#!/usr/bin/env bash

cardano-node -- run \
--config ./alonzo-purple-config.json \
Expand Down
2 changes: 1 addition & 1 deletion plutus-pab-executables/tx-inject/start-all-servers.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
rm -f ./primary.db
cabal build plutus-pab
cabal exec plutus-pab -- --config=./config.yaml migrate primary.db
Expand Down
4 changes: 2 additions & 2 deletions plutus-pab/test-node/activate-contract.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
curl -H "Content-Type: application/json" -d @activation.json localhost:9080/api/new/contract/activate
#!/usr/bin/env bash
curl -H "Content-Type: application/json" -d @activation.json localhost:9080/api/new/contract/activate
2 changes: 1 addition & 1 deletion plutus-pab/test-node/cleanup.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
#!/usr/bin/env bash
rm -rf node{1,2}/db node{1,2}/node.sock
2 changes: 1 addition & 1 deletion plutus-pab/test-node/start-alonzo-purple-node.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

cardano-node -- run \
--config alonzo-purple/alonzo-purple-config.json \
Expand Down
2 changes: 1 addition & 1 deletion plutus-pab/test-node/start-node-01.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

cardano-node -- run \
--config configuration.yaml \
Expand Down
2 changes: 1 addition & 1 deletion plutus-pab/test-node/start-node-02.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

cardano-node -- run \
--config configuration.yaml \
Expand Down
2 changes: 1 addition & 1 deletion plutus-pab/test-node/start-testnet-node.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

cardano-node run \
--config testnet/testnet-config.json \
Expand Down