get rid of Xcode tools and git requirement
This commit is contained in:
parent
b4500a2914
commit
10b016312d
1 changed files with 2 additions and 16 deletions
|
@ -5,7 +5,6 @@ import os
|
||||||
import webbrowser
|
import webbrowser
|
||||||
import sys
|
import sys
|
||||||
import socket
|
import socket
|
||||||
import subprocess
|
|
||||||
import platform
|
import platform
|
||||||
|
|
||||||
from appdirs import user_data_dir
|
from appdirs import user_data_dir
|
||||||
|
@ -44,17 +43,6 @@ def test_internet_connection():
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
def prompt_for_xcode_if_needed():
|
|
||||||
t = subprocess.check_output("git ls-remote https://github.com/lbryio/lbry-web-ui.git | grep HEAD | cut -f 1", shell=True)
|
|
||||||
if not t:
|
|
||||||
if platform.system().lower() != "darwin":
|
|
||||||
print "Please install git"
|
|
||||||
sys.exit(0)
|
|
||||||
else:
|
|
||||||
print "You should have been alerted to install xcode command line tools, please do so and then start lbry"
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
|
|
||||||
def stop():
|
def stop():
|
||||||
def _disp_shutdown():
|
def _disp_shutdown():
|
||||||
print "Shutting down lbrynet-daemon from command line"
|
print "Shutting down lbrynet-daemon from command line"
|
||||||
|
@ -80,8 +68,8 @@ def start():
|
||||||
help="path to custom UI folder",
|
help="path to custom UI folder",
|
||||||
default=None)
|
default=None)
|
||||||
parser.add_argument("--branch",
|
parser.add_argument("--branch",
|
||||||
help="Branch of lbry-web-ui repo to use, defaults on HEAD",
|
help="Branch of lbry-web-ui repo to use, defaults on master",
|
||||||
default="HEAD")
|
default="master")
|
||||||
parser.add_argument('--no-launch', dest='launchui', action="store_false")
|
parser.add_argument('--no-launch', dest='launchui', action="store_false")
|
||||||
parser.add_argument('--log-to-console', dest='logtoconsole', action="store_true")
|
parser.add_argument('--log-to-console', dest='logtoconsole', action="store_true")
|
||||||
parser.add_argument('--quiet', dest='quiet', action="store_true")
|
parser.add_argument('--quiet', dest='quiet', action="store_true")
|
||||||
|
@ -104,8 +92,6 @@ def start():
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
prompt_for_xcode_if_needed()
|
|
||||||
|
|
||||||
log.info("Starting lbrynet-daemon from command line")
|
log.info("Starting lbrynet-daemon from command line")
|
||||||
|
|
||||||
if not args.logtoconsole and not args.quiet:
|
if not args.logtoconsole and not args.quiet:
|
||||||
|
|
Loading…
Reference in a new issue