Skip to content

Commit

Permalink
Truffle Ganache using Bash Bug Corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
remedcu committed Nov 7, 2020
1 parent 168a318 commit 8f085c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inherichain",
"version": "2.0.0",
"version": "2.0.1",
"description": "A wallet which has inheritance built in on the Ethereum Blockchain.",
"main": "truffle-config.js",
"directories": {
Expand Down
4 changes: 2 additions & 2 deletions startGanache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ function startupGanache() {
echo "Killing existing Ganache CLI process $GANACHE_PID"
kill -9 $GANACHE_PID

./node_modules/.bin/ganache-cli -m "$MNEMONIC" -a 12 > /dev/null &
./node_modules/.bin/ganache-cli -m "$MNEMONIC" -a 15 > /dev/null &
export GANACHE_PID=$!
echo "Started new Ganache CLI as process $GANACHE_PID"
else
./node_modules/.bin/ganache-cli -m "$MNEMONIC" -a 12 > /dev/null &
./node_modules/.bin/ganache-cli -m "$MNEMONIC" -a 15 > /dev/null &
export GANACHE_PID=$!
echo "Started new Ganache CLI as process $GANACHE_PID"
fi
Expand Down

0 comments on commit 8f085c5

Please sign in to comment.