# HG changeset patch # User Richard Westhaver # Date 1721602956 14400 # Node ID 28572d262f4ccf64c019b80d37be606fed877ef9 # Parent a3135650c721c71c3d98bf48fe7ce5886944c753 fix diff -r a3135650c721 -r 28572d262f4c scripts/init-vc-bundles.sh --- a/scripts/init-vc-bundles.sh Sun Jul 21 18:41:14 2024 -0400 +++ b/scripts/init-vc-bundles.sh Sun Jul 21 19:02:36 2024 -0400 @@ -8,7 +8,7 @@ echo "entering $DIR" for i in $(find . -type f -name "*.hg"); do echo "unbundling $i" - r=(basename "$i" .hg) + r=$(basename "$i" .hg) hg init "$r" cd "$r" && hg unbundle "$DIR/$i" && cd "$DIR" rm "$i"