diff options
author | EuAndreh <eu@euandre.org> | 2022-10-18 23:51:00 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-18 23:51:00 -0300 |
commit | 1235bf098a6d5ca4bd829c77728e4c4413b6d815 (patch) | |
tree | a8f613ba89a902a32c2dd93805a45d98e344e71b | |
parent | bin/x: Add WIP manpage in POD (diff) | |
download | dotfiles-1235bf098a6d5ca4bd829c77728e4c4413b6d815.tar.gz dotfiles-1235bf098a6d5ca4bd829c77728e4c4413b6d815.tar.xz |
etc/sh/rc: Ensure common-lisp/source symlink always exist
-rw-r--r-- | etc/sh/rc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -266,6 +266,10 @@ if [ -r "$F" ]; then . "$F" fi +mkdir -p "$XDG_DATA_HOME"/common-lisp +if [ ! -e "$XDG_DATA_HOME"/common-lisp/source ]; then + ln -s "$SRC"/libre "$XDG_DATA_HOME"/common-lisp/source +fi |