Skip to content

Commit

Permalink
feat: add download callback
Browse files Browse the repository at this point in the history
  • Loading branch information
Stratus3D committed Jan 14, 2025
1 parent 945e7fb commit 84d04e8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: actions/checkout@v2
- name: Install system packages on Ubuntu
if: ${{ runner.os == 'Linux' }}
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
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

- name: Install system packages on macOS
if: ${{ runner.os == 'macOS' }}
Expand Down
12 changes: 12 additions & 0 deletions bin/download
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env bash

# Unoffical Bash "strict mode"
# http://redsymbol.net/articles/unofficial-bash-strict-mode/
set -euo pipefail
#ORIGINAL_IFS=$IFS
IFS=$'\t\n' # Stricter IFS settings

# Because kerl downloads and builds versions in one command this script is
# a no-op. It's now required by asdf so we have it here so that it continues
# to pass the tests.
exit 0

0 comments on commit 84d04e8

Please sign in to comment.