Skip to content

Commit 84d04e8

Browse files
committed
feat: add download callback
1 parent 945e7fb commit 84d04e8

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: actions/checkout@v2
2929
- name: Install system packages on Ubuntu
3030
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
3232

3333
- name: Install system packages on macOS
3434
if: ${{ runner.os == 'macOS' }}

Diff for: bin/download

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

0 commit comments

Comments
 (0)