Merge pull request #224 from jcjones/fixups

Fixups for running on Linux
This commit is contained in:
arroway 2020-07-30 12:02:14 +02:00 коммит произвёл GitHub
Родитель ba14bfe0a7 3fb9f072de
Коммит 5e243f4dd8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 8 добавлений и 4 удалений

Просмотреть файл

@ -1,5 +1,5 @@
#!/bin/bash
# AWS Ubuntu 18.4 linux bootstrap
# AWS Ubuntu 20.4 linux bootstrap
sudo apt-get update
sudo apt-get -y install \
gcc \
@ -13,9 +13,12 @@ sudo apt-get -y install \
p7zip-full \
python3 \
python3-dev \
python3-pip
python3-pip \
libx11-xcb-dev
# The virtualenv package is not consistently named across distros
sudo apt-get -y install virtualenv \
|| sudo apt-get -y install python3-virtualenv
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Просмотреть файл

@ -61,7 +61,7 @@ function set_prefs(prefs) {
Services.prefs.setIntPref(prop, value);
break;
case "string":
Services.prefs.setPref(prop, value);
Services.prefs.setStringPref(prop, value);
break;
default:
throw "Unsupported pref type " + type;
@ -223,4 +223,5 @@ function run_loop() {
print(error);
}
}
}
}