diff options
author | Óscar Nájera <hi@oscarnajera.com> | 2021-06-03 18:17:14 +0200 |
---|---|---|
committer | Óscar Nájera <hi@oscarnajera.com> | 2021-06-03 18:17:14 +0200 |
commit | d13e2a6479abe4b6598a39f1489626372f53a375 (patch) | |
tree | 6f4719a3eff513f1780cf4a2202e56c9926dc9b9 | |
parent | f2d8a7353297bb121079e31ca77d36539bc024d0 (diff) | |
download | dotfiles-d13e2a6479abe4b6598a39f1489626372f53a375.tar.gz dotfiles-d13e2a6479abe4b6598a39f1489626372f53a375.tar.bz2 dotfiles-d13e2a6479abe4b6598a39f1489626372f53a375.zip |
install log symlink direction
-rwxr-xr-x | install.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.scm b/install.scm index a51ee96..0e3ffde 100755 --- a/install.scm +++ b/install.scm @@ -107,7 +107,7 @@ (rm-tree target-path dry-run) (make-dir-parents (dirname target-path)) (symlink src-path target-path) - (log-msg 'OK (string-append " Symlink " src " -> " target))))) + (log-msg 'OK (string-append " Symlink " src " <- " target-path))))) (define (symlink-tree file-name target-path) "Tree recursively symlinks target-path->file-name. The goal is to |