Skip to content

Commit fc08ab6

Browse files
committed
1 parent c766342 commit fc08ab6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/scripts/install_deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -eu
44

55
case "${1%-*}" in
6-
ubuntu)
6+
ubuntu|debian)
77
sudo apt-get -qq update
88
sudo apt-get install -yq bison libpng-dev pkg-config
99
;;
@@ -27,7 +27,7 @@ case "${1%-*}" in
2727
bison() { win_bison "$@"; } # An alias doesn't work, so we use a function instead.
2828
;;
2929
*)
30-
echo "WARNING: Cannot install deps for OS '$1'"
30+
echo "::error:: Cannot install deps for OS '$1'"
3131
;;
3232
esac
3333

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && \
99
apt-get install sudo make cmake gcc build-essential -y
1010

1111
# Install dependencies and compile RGBDS
12-
RUN ./.github/scripts/install_deps.sh ubuntu-24.04
12+
RUN ./.github/scripts/install_deps.sh debian
1313
RUN make -j CXXFLAGS="-O3 -flto -DNDEBUG -static" PKG_CONFIG="pkg-config --static" Q=
1414

1515
# Create an archive with the compiled executables and all the necessary to install it,

0 commit comments

Comments
 (0)