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

This commit is contained in:
2025-11-12 10:56:45 +01:00
parent e0497f58f0
commit ce7f4aa776

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