Skip to content

Commit d0c9691

Browse files
authored
Merge pull request #55 from lool/workflows-symlink-to-dir
workflows: Fix updating symlinks to directories
2 parents d58f3a8 + d4bf209 commit d0c9691

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
cp -av artifacts/* "${BUILD_DIR}"
8282
# create or update linux-deb-latest symlink
8383
mkdir -vp /fileserver-downloads/qcom-deb-images
84-
ln -svf "../${BUILD_ID}" /fileserver-downloads/qcom-deb-images/linux-deb-latest
84+
ln -fnsv "../${BUILD_ID}" /fileserver-downloads/qcom-deb-images/linux-deb-latest
8585
# perhaps help NFS sync
8686
sync
8787

.github/workflows/u-boot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
# remove what used to be a directory and create/update symlink to
8787
# point to latest build
8888
rm -rvf u-boot-rb1-latest
89-
ln -svf "../${BUILD_ID}" u-boot-rb1-latest
89+
ln -fnsv "../${BUILD_ID}" u-boot-rb1-latest
9090
)
9191
# perhaps help NFS sync
9292
sync

0 commit comments

Comments
 (0)