diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-11 16:06:30 +0100 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-11 16:06:30 +0100 |
commit | a2b2b7886fc9b25a5c5c01509bddaddfcd6dcb8a (patch) | |
tree | 6395eda08e5cf69db3a30024f046adf7e004660b /bin | |
parent | 25f8bb5a19466335067fcbb2e494e1eafd3734f1 (diff) | |
download | bookup-a2b2b7886fc9b25a5c5c01509bddaddfcd6dcb8a.tar.gz bookup-a2b2b7886fc9b25a5c5c01509bddaddfcd6dcb8a.tar.bz2 |
Fix: archive: local symlink (2)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/archive | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/archive b/bin/archive index 3e3f3f1..4d4c37a 100755 --- a/bin/archive +++ b/bin/archive @@ -28,7 +28,7 @@ mkdir -p $ARCHIVE ( cd $ARCHIVE &> /dev/null - rm archive && ln -s . archive + rm -f archive && ln -s . archive for item in slides vendor images LICENSE; do ln -sf ../$item done |