appimage: Get the appimage build working.

- zesty -> cosmic
- appimage 9 -> appimage 12
- vigil -> eris
This commit is contained in:
Andrew Hamilton 2019-07-15 12:50:32 +10:00
parent 6de0eeb6fa
commit 4714452760
7 changed files with 9 additions and 31 deletions

View file

@ -27,10 +27,10 @@ if pip_deps:
if go_deps:
subprocess.run(["sudo", "apt-get", "-y", "install", "golang-go"],
check=True)
subprocess.run(["go", "get", "-u"] + list(go_deps), check=True)
subprocess.run(["go", "get"] + list(go_deps), check=True)
if luarocks_deps:
subprocess.run(["sudo", "apt-get", "-y", "install", "luarocks"],
check=True)
subprocess.run(["sudo", "apt-get", "-y", "install", "luarocks",
"liblua5.3-dev"], check=True)
subprocess.run(["sudo", "luarocks", "install"] + list(luarocks_deps),
check=True)