Build image changed from ubuntu 18.04 to 18.10 since flatpak-builder in 18.04 doesn't have source type 'dir' implemented yet
10 lines
421 B
Bash
Executable file
10 lines
421 B
Bash
Executable file
#!/bin/sh
|
|
printf "\n\n-------------------------------------- DEPENDENCY INSTALLATION ---------------------------------------------\n";
|
|
|
|
# Setup Script Variables
|
|
_DEPENDENCIES="mercurial wget git flatpak flatpak-builder";
|
|
|
|
# Installs Dependencies
|
|
printf "\nInstalling dependencies: $_DEPENDENCIES\n";
|
|
DEBIAN_FRONTEND=noninteractive apt-get -qq update;
|
|
DEBIAN_FRONTEND=noninteractive apt-get -y -qq install $_DEPENDENCIES;
|