Skip to content

Commit 73b1298

Browse files
committed
Fix spaces issue for antigen-bundles command
1 parent 7acefe8 commit 73b1298

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

bin/antigen.zsh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1715,7 +1715,7 @@ antigen-ext-init () {
17151715

17161716
builtin local bundle &> /dev/null
17171717
for bundle in ${_PARALLEL_BUNDLE[@]}; do
1718-
antigen-bundle $bundle
1718+
antigen-bundle ${=bundle}
17191719
done
17201720

17211721

src/ext/parallel.zsh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
builtin local bundle &> /dev/null
5353
for bundle in ${_PARALLEL_BUNDLE[@]}; do
54-
antigen-bundle $bundle
54+
antigen-bundle ${=bundle}
5555
done
5656

5757

tests/bundles.t

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,7 @@ Again, check if they are both applied.
3636
hehe
3737
$ hehe2
3838
hehe2
39+
40+
Add bundle theme (contains spaces).
41+
42+
$ echo "$PLUGIN_DIR silly --btype=theme" | antigen-bundles &> /dev/null

0 commit comments

Comments
 (0)