Skip to content

Commit 3565ce4

Browse files
committed
workflows: linux: Fix directory name on fileserver
Signed-off-by: Loïc Minier <[email protected]>
1 parent 38c0a50 commit 3565ce4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/linux.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,15 @@ jobs:
7777
mkdir -vp "${dir}"
7878
cp -av `dcmd *.changes` "${dir}"
7979
done
80-
# create or update linux-latest symlink
80+
# create or update linux-deb-latest symlink
8181
mkdir -vp /fileserver-downloads/qcom-deb-images
8282
(
8383
cd /fileserver-downloads/qcom-deb-images
8484
# remove what used to be a directory and create/update symlink to
8585
# point to latest build
8686
rm -rvf linux-latest
87-
ln -svf "../${BUILD_ID}" linux-latest
87+
rm -rvf linux-deb-latest
88+
ln -svf "../${BUILD_ID}" linux-deb-latest
8889
)
8990
# perhaps help NFS sync
9091
sync

0 commit comments

Comments
 (0)