Skip to content

Commit

Permalink
Standardize to sh
Browse files Browse the repository at this point in the history
  • Loading branch information
kayabaNerve committed Feb 8, 2024
1 parent 22a3039 commit bd3b563
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion orchestration/dev/coins/bitcoin/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

RPC_USER="${RPC_USER:=serai}"
RPC_PASS="${RPC_PASS:=seraidex}"
2 changes: 1 addition & 1 deletion orchestration/dev/coins/ethereum/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

geth --dev --networkid 5208 --datadir "eth-devnet" \
--http --http.api "web3,net,eth,miner" \
2 changes: 1 addition & 1 deletion orchestration/dev/coins/monero-wallet-rpc/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

monero-wallet-rpc \
--allow-mismatched-daemon-version \
2 changes: 1 addition & 1 deletion orchestration/dev/coins/monero/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

RPC_USER="${RPC_USER:=serai}"
RPC_PASS="${RPC_PASS:=seraidex}"
2 changes: 1 addition & 1 deletion orchestration/dev/serai/run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
#!/bin/sh

serai-node --unsafe-rpc-external --rpc-cors all --chain local --$SERAI_NAME
2 changes: 1 addition & 1 deletion orchestration/testnet/coins/bitcoin/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

RPC_USER="${RPC_USER:=serai}"
RPC_PASS="${RPC_PASS:=seraidex}"
2 changes: 1 addition & 1 deletion orchestration/testnet/coins/ethereum/run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
#!/bin/sh

exit 1
2 changes: 1 addition & 1 deletion orchestration/testnet/coins/monero/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

RPC_USER="${RPC_USER:=serai}"
RPC_PASS="${RPC_PASS:=seraidex}"
2 changes: 1 addition & 1 deletion orchestration/testnet/serai/run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
#!/bin/sh

exit 1

0 comments on commit bd3b563

Please sign in to comment.