mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-02 16:21:01 -04:00
Adjusting the subprocess call.
This commit is contained in:
parent
ace7d3d64e
commit
9153e1463d
1 changed files with 3 additions and 3 deletions
|
@ -142,9 +142,9 @@ class LinuxSetup(SetupFactory):
|
|||
"--recv", "7F0CEB10"])
|
||||
subprocess.check_call(["add-apt-repository",
|
||||
"deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen"])
|
||||
subprocess.check_call(["curl", "-sL",
|
||||
"https://deb.nodesource.com/setup",
|
||||
"|", "bash"], shell=True)
|
||||
subprocess.check_call("curl -sL "
|
||||
"https://deb.nodesource.com/setup"
|
||||
" | bash", shell=True)
|
||||
subprocess.check_call(["apt-get", "update"])
|
||||
except subprocess.CalledProcessError as err:
|
||||
print("Adding repositories failed. Retry, Install without"
|
||||
|
|
Loading…
Add table
Reference in a new issue