- Many fixes to sourcing, now will always resolve to base dir.

- All scripts are again `sh` compatible.
- Binbox overhaul, symlinks finally work just like `busybox`.
- Error checking to some files like `sw` and `own`.
TODO: Make it pretty and make `short` already.
This commit is contained in:
Sam Hardeman 2025-09-22 08:34:50 +02:00
parent b5c8a3f894
commit 0912f2d3d4
13 changed files with 1143 additions and 33 deletions

View file

@ -11,7 +11,10 @@
# only included if sourced from one of the included scripts, though you are
# free to bypass this by setting env variable DAISY_INTERNAL to 1.
[[ $DAISY_INTERNAL -eq 1 ]] && export DAISY_BIN=$(basename $0)
if [[ $DAISY_INTERNAL -eq 1 ]];
then
export DAISY_BIN=$(basename $0)
fi
# Intro function
function daisy_help()