Skip to content

Commit 9f92e77

Browse files
authored
Merge pull request #38 from lool/fix-fileserver-dir-name
workflows: linux: Fix directory name on fileserver
2 parents 38c0a50 + 3565ce4 commit 9f92e77

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)