# HG changeset patch # User Richard Westhaver # Date 1721600217 14400 # Node ID 5964a3cb871e2f341b2d990397597a38359f4b8c # Parent 37db99de55c1f06ee69d61535f91254fe2117703 fix diff -r 37db99de55c1 -r 5964a3cb871e scripts/init-vc-bundles.sh --- a/scripts/init-vc-bundles.sh Sun Jul 21 18:15:38 2024 -0400 +++ b/scripts/init-vc-bundles.sh Sun Jul 21 18:16:57 2024 -0400 @@ -9,6 +9,6 @@ echo "unbundling $i" r=(basename "$i" .hg) hg init "$r" - cd $r && hg unbundle $DIR/$i && cd $DIR + cd "$r" && hg unbundle "$DIR/$i" && cd "$DIR" + rm "$i" done -