1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-09-08 10:48:52 +00:00

Fixed setup script.

This commit is contained in:
Shuai Lin
2017-01-07 12:23:08 +08:00
parent 268c51687b
commit 4505a8faf6

View File

@@ -107,6 +107,10 @@ Press ENTER to continue
shell=True)
return proc.wait()
@staticmethod
def get_command_output(args, *a, **kw):
return subprocess.check_output(args, *a, **kw)
@staticmethod
def prepend_env_value(name, value, env=None, seperator=':'):
'''prepend a new value to a list'''