fixing missing env var check with default

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-01-02 01:43:15 -06:00
parent 15119136b9
commit c5263d2215

View file

@ -236,7 +236,7 @@
]; ];
shellHook = '' shellHook = ''
if [ -z "''${SKIP_MOD_WORKTREES}" ]; then if [ -z "''${SKIP_MOD_WORKTREES:-}" ]; then
mod_worktrees mod_worktrees
fi fi
''; '';