We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e18e8b8 commit 44d9a5fCopy full SHA for 44d9a5f
.github/build-native-debian.sh
@@ -4,6 +4,13 @@ set -ex
4
5
cd "$(dirname "$(dirname "$0")")"
6
7
+DEBIAN_VERSION=$(grep '^VERSION_ID=' /etc/os-release | cut -d'"' -f2)
8
+if [[ "$DEBIAN_VERSION" == "10" ]]; then
9
+ echo "deb http://archive.debian.org/debian buster main" > /etc/apt/sources.list
10
+ echo "deb http://archive.debian.org/debian-security buster/updates main" >> /etc/apt/sources.list
11
+ echo "deb http://archive.debian.org/debian buster-updates main" >> /etc/apt/sources.list
12
+fi
13
+
14
# Add stretch for Java 8
15
#cat <<END > /etc/apt/sources.list.d/stretch.list
16
#deb http://deb.debian.org/debian stretch main
0 commit comments