From 3565ce4458fcaf451911476c0b3b39f0805e07c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Minier?= Date: Wed, 30 Apr 2025 16:42:18 +0200 Subject: [PATCH] workflows: linux: Fix directory name on fileserver MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Loïc Minier --- .github/workflows/linux.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 9ef75d65..29090cc5 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -77,14 +77,15 @@ jobs: mkdir -vp "${dir}" cp -av `dcmd *.changes` "${dir}" done - # create or update linux-latest symlink + # create or update linux-deb-latest symlink mkdir -vp /fileserver-downloads/qcom-deb-images ( cd /fileserver-downloads/qcom-deb-images # remove what used to be a directory and create/update symlink to # point to latest build rm -rvf linux-latest - ln -svf "../${BUILD_ID}" linux-latest + rm -rvf linux-deb-latest + ln -svf "../${BUILD_ID}" linux-deb-latest ) # perhaps help NFS sync sync