55c51f2a73
- Rely on shebang instead of setting shell in workflow - Run whole install-dependencies.sh in sudo - Use /bin/sh instead of bash - set -e
11 lines
262 B
Bash
Executable File
11 lines
262 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cp contrib/actions/sources.list /etc/apt/sources.list
|
|
rm -rf /etc/apt/sources.list.d
|
|
apt update
|
|
apt install git subversion build-essential python gawk unzip libncurses5-dev zlib1g-dev libssl-dev wget time
|
|
apt clean
|
|
rm -rf /var/lib/apt/lists/*
|