File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 28
28
uses : actions/checkout@v2
29
29
- name : Install system packages on Ubuntu
30
30
if : ${{ runner.os == 'Linux' }}
31
- run : sudo apt-get update; sudo apt-get -y install build-essential autoconf m4 libncurses5-dev libwxgtk3.0-gtk3 -dev libgl1-mesa-dev libglu1-mesa-dev libpng-dev libssh-dev xsltproc fop libxml2-utils libncurses-dev
31
+ run : sudo apt-get update; sudo apt-get -y install build-essential autoconf m4 libncurses5-dev libwxgtk3.2 -dev libgl1-mesa-dev libglu1-mesa-dev libpng-dev libssh-dev xsltproc fop libxml2-utils libncurses-dev
32
32
33
33
- name : Install system packages on macOS
34
34
if : ${{ runner.os == 'macOS' }}
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ # Unoffical Bash "strict mode"
4
+ # http://redsymbol.net/articles/unofficial-bash-strict-mode/
5
+ set -euo pipefail
6
+ # ORIGINAL_IFS=$IFS
7
+ IFS=$' \t\n ' # Stricter IFS settings
8
+
9
+ # Because kerl downloads and builds versions in one command this script is
10
+ # a no-op. It's now required by asdf so we have it here so that it continues
11
+ # to pass the tests.
12
+ exit 0
You can’t perform that action at this time.
0 commit comments