You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
309 B
13 lines
309 B
#!/bin/bash
|
|
|
|
if [ -z "$PASSPHRASE" ]; then
|
|
echo "No PASSPHRASE environment variable"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$COINS" ]; then
|
|
source ~/coins
|
|
COINS=$coins
|
|
fi
|
|
|
|
exec marketmaker "{\"gui\":\"nogui\", \"client\":1, \"docker\":1, \"userhome\":\"/${HOME#"/"}\", \"passphrase\":\"$PASSPHRASE\", \"coins\":$COINS}"
|
|
|