remove channel root more carefully (could be a symlink)
Alan Pearce alan@alanpearce.eu
Tue, 07 May 2024 11:13:44 +0200
1 files changed, 6 insertions(+), 2 deletions(-)
jump to
M bin/home-manager → bin/home-manager
@@ -30,8 +30,12 @@ echo "user home-manager configuration folder $hm_config_dir does not exist, creating it" mkdir -p $hm_config_dir end if test -e $channel_root - rm $channel_root/* || exit 1 - rmdir $channel_root + if test ! -L $channel_root + rm $channel_root/* || exit 1 + rmdir $channel_root + else + rm $channel_root || exit 1 + end end end