change no-launch to launchui

This commit is contained in:
jobevers 2017-01-30 12:04:07 -08:00
parent b744a54340
commit 7377158631
2 changed files with 2 additions and 2 deletions

View file

@ -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(

View file

@ -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