carbon-config

config submodule of carbon-core-system
git clone https://ccx.te2000.cz/git/carbon-config
Log | Files | Refs

commit 521eddc2a04c2a2148681cdb8dcf93f90a151a48
parent 4f5d48c242548fa255010257d6ccc0b65b695131
Author: Jan Pobrislo <ccx@webprojekty.cz>
Date:   Mon, 25 Jul 2022 11:27:56 +0200

Fix s6-ln invocation

Diffstat:
Minstall | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/install b/install @@ -32,7 +32,7 @@ install_to_all() { ./init-maker/install $PWD || exit $? local cmd for cmd in init/bin/*; do - s6-ln ../$cmd command/ || $? + s6-ln -s ../$cmd ./command/$cmd:t || exit $? done } typeset -f -t install_to_all