forked from LBRYCommunity/lbry-sdk
change no-launch to launchui
This commit is contained in:
parent
b744a54340
commit
7377158631
2 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ def start():
|
||||||
"--branch",
|
"--branch",
|
||||||
help='Branch of lbry-web-ui repo to use, defaults to {}'.format(conf.settings['ui_branch']),
|
help='Branch of lbry-web-ui repo to use, defaults to {}'.format(conf.settings['ui_branch']),
|
||||||
default=conf.settings['ui_branch'])
|
default=conf.settings['ui_branch'])
|
||||||
parser.add_argument('--no-launch', dest='launchui', action="store_false")
|
parser.add_argument('--launch-ui', dest='launchui', action="store_true")
|
||||||
parser.add_argument("--http-auth", dest="useauth", action="store_true",
|
parser.add_argument("--http-auth", dest="useauth", action="store_true",
|
||||||
default=conf.settings['use_auth_http'])
|
default=conf.settings['use_auth_http'])
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
|
|
|
@ -28,7 +28,7 @@ DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||||||
|
|
||||||
if [ -z "$(pgrep lbrynet-daemon)" ]; then
|
if [ -z "$(pgrep lbrynet-daemon)" ]; then
|
||||||
echo "running lbrynet-daemon"
|
echo "running lbrynet-daemon"
|
||||||
$DIR/lbrynet-daemon --no-launch &
|
$DIR/lbrynet-daemon &
|
||||||
sleep 3 # let the daemon load before connecting
|
sleep 3 # let the daemon load before connecting
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue