1 changed files with 43 additions and 1 deletions
@ -1,7 +1,49 @@ |
|||||
#!/usr/bin/env python |
#!/usr/bin/env python |
||||
"""Wrapper for the command line interface.""" |
"""Wrapper for the command line interface.""" |
||||
|
|
||||
from couchpotato import cli |
import os |
||||
|
from os.path import dirname, isfile |
||||
|
import subprocess |
||||
|
import sys |
||||
|
|
||||
|
|
||||
|
try: |
||||
|
from couchpotato import cli |
||||
|
except ImportError: |
||||
|
print "Checking local dependencies..." |
||||
|
if isfile(__file__): |
||||
|
cwd = dirname(__file__) |
||||
|
print "Updating libraries..." |
||||
|
stdout, stderr = subprocess.Popen(["git", "submodule", "init"], |
||||
|
stderr=subprocess.PIPE, |
||||
|
stdout=subprocess.PIPE).communicate() |
||||
|
if stderr: |
||||
|
print "[WARNING] Git is complaining:" |
||||
|
print "="*78 |
||||
|
print stderr |
||||
|
print "="*78 |
||||
|
stdout, stderr = subprocess.Popen(["git", "submodule", "update"], |
||||
|
stderr=subprocess.PIPE, |
||||
|
stdout=subprocess.PIPE).communicate() |
||||
|
if stderr: |
||||
|
print "[WARNING] Git is complaining:" |
||||
|
print "="*78 |
||||
|
print stderr |
||||
|
print "="*78 |
||||
|
print "Registering libraries..." |
||||
|
# Insert local directories into path |
||||
|
lib_path = os.path.join(os.path.abspath(cwd), 'libs') |
||||
|
sys.path.insert(0, lib_path) |
||||
|
src_path = os.path.join(os.path.abspath(cwd), 'src') |
||||
|
print "Passing execution to couchpotato..." |
||||
|
try: |
||||
|
from couchpotato import cli |
||||
|
except ImportError: |
||||
|
print "[ERROR]: Something's seriously wrong." |
||||
|
print "Could not load couchpotato from src directory." |
||||
|
else: |
||||
|
# Running from Titanium |
||||
|
raise NotImplementedError("Don't know how to do that.") |
||||
|
|
||||
|
|
||||
cli.cmd_couchpotato() |
cli.cmd_couchpotato() |
||||
|
Loading…
Reference in new issue