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