core-system-scripts

Scripts submodule for the core-system repository
git clone https://ccx.te2000.cz/git/core-system-scripts
Log | Files | Refs

commit 4835dabed67d0ee538722f82fd3a96a6968487dd
parent cb70a8ffa4bad8f3752eb4b90cafa43b6011181d
Author: Jan Pobrislo <ccx@webprojekty.cz>
Date:   Thu, 28 Jul 2022 11:16:45 +0200

Fix path to the skel directory.

Diffstat:
Mcommand/link-skel | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/command/link-skel b/command/link-skel @@ -2,8 +2,8 @@ main() { local f l (umask 077 && mkdir -p $HOME/.{config,cache,local/{share/zsh,state}}) || exit $? - for f in conf/skel/**/*(.D); do - l=$HOME/${f#conf/skel/} + for f in scripts/skel/**/*(.D); do + l=$HOME/${f#scripts/skel/} [[ -e $l ]] && continue mkdir -p $l:h || exit $? s6-ln -s /current/$f $l || exit $?