fix: Correct escaping in apt proxy configuration in CI workflow
Some checks failed
CI / lint (push) Failing after 5s
CI / test (push) Has been skipped
CI / build (push) Has been skipped

This commit is contained in:
2025-11-12 10:55:19 +01:00
parent 60410fd71d
commit e0497f58f0

View File

@@ -30,7 +30,7 @@ jobs:
- name: Configure apt proxy
run: |
if [ -n \"${APT_CACHER_NG}\" ]; then
echo \"Acquire::http::Proxy \\\"${APT_CACHER_NG}\\\";\" | tee /etc/apt/apt.conf.d/01apt-cacher-ng
echo \"Acquire::http::Proxy \"${APT_CACHER_NG}\";\" | tee /etc/apt/apt.conf.d/01apt-cacher-ng
fi
- name: Install system packages
@@ -97,7 +97,7 @@ jobs:
- name: Configure apt proxy
run: |
if [ -n \"${APT_CACHER_NG}\" ]; then
echo \"Acquire::http::Proxy \\\"${APT_CACHER_NG}\\\";\" | tee /etc/apt/apt.conf.d/01apt-cacher-ng
echo \"Acquire::http::Proxy \"${APT_CACHER_NG}\";\" | tee /etc/apt/apt.conf.d/01apt-cacher-ng
fi
- name: Install system packages