Skip to content

Commit 2035b02

Browse files
fix: apt list debian instead of ubuntu
1 parent 0ba9f5d commit 2035b02

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/scripts/git_debug_image.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ ROOT_DIR="$(realpath $SCRIPT_DIR/..)"
2626
BRANCH_NAME="$1" # git branch name
2727

2828
# Install components in the docker images
29-
echo "deb http://archive.ubuntu.com/ubuntu $(lsb_release -cs) main universe" > /etc/apt/sources.list
29+
. /etc/os-release
30+
echo "deb http://deb.debian.org/debian $VERSION_CODENAME main" > /etc/apt/sources.list
3031
apt update
3132
apt install -y git vim emacs-nox
3233

0 commit comments

Comments
 (0)