Skip to content

Commit 130e1f8

Browse files
committed
more fixes
1 parent 6badf74 commit 130e1f8

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

Github/Runners/debian-builder-unstable.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,4 +188,4 @@ ENV LANG="en_US.UTF-8"
188188
ENV LANGUAGE="en_US:en"
189189
ENV LC_ALL="en_US.UTF-8"
190190
ENV PATH="${HOME}/bin:${HOME}/.cargo/bin:${HOME}/.cargo/env:${HOME}/.go/bin:${HOME}/go/bin:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:${HOME}/.local/bin:${HOME}/miniconda3/bin:${HOME}/miniconda3/condabin:/usr/local/zig:/usr/local/zig/lib:/usr/local/zig/lib/include:/usr/local/musl/bin:/usr/local/musl/lib:/usr/local/musl/include:${PATH}"
191-
#------------------------------------------------------------------------------------#
191+
#------------------------------------------------------------------------------------#

Github/Runners/ubuntu-systemd-base.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ EOS
125125
RUN <<EOS
126126
#Addons
127127
##https://github.com/pkgforge/devscripts/blob/main/Linux/install_bins_curl.sh
128-
curl -qfsSL "https://github.com/pkgforge/devscripts/blob/main/Linux/install_bins_curl.sh" -o "./tools.sh"
128+
curl -qfsSL "https://raw.githubusercontent.com/pkgforge/devscripts/refs/heads/main/Linux/install_bins_curl.sh" -o "./tools.sh"
129129
dos2unix --quiet "./tools.sh" && chmod +x "./tools.sh"
130130
bash "./tools.sh" 2>/dev/null || true ; rm -rf "./tools.sh"
131131
EOS

Github/Runners/x86_64-ubuntu.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ EOS
132132
RUN <<EOS
133133
##Addons
134134
#https://github.com/pkgforge/devscripts/blob/main/Linux/install_bins_curl.sh
135-
curl -qfsSL "https://github.com/pkgforge/devscripts/blob/main/Linux/install_bins_curl.sh" -o "./tools.sh"
135+
curl -qfsSL "https://raw.githubusercontent.com/pkgforge/devscripts/refs/heads/main/Linux/install_bins_curl.sh" -o "./tools.sh"
136136
dos2unix --quiet "./tools.sh" && chmod +x "./tools.sh"
137137
bash "./tools.sh" 2>/dev/null || true ; rm -rf "./tools.sh"
138138
EOS

Linux/install_bins_curl.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@
5656
ARCH="$(uname -m)" && export ARCH="${ARCH}"
5757
if [ "${ARCH}" == "aarch64" ]; then
5858
INSTALL_SRC="https://bin.pkgforge.dev/aarch64-Linux" ; export INSTALL_SRC="${INSTALL_SRC}"
59+
elif [ "${ARCH}" == "riscv64" ]; then
60+
INSTALL_SRC="https://bin.pkgforge.dev/riscv64-Linux" ; export INSTALL_SRC="${INSTALL_SRC}"
5961
elif [ "${ARCH}" == "x86_64" ]; then
6062
INSTALL_SRC="https://bin.pkgforge.dev/x86_64-Linux" ; export INSTALL_SRC="${INSTALL_SRC}"
6163
fi

0 commit comments

Comments
 (0)