Skip to content

Commit

Permalink
Fix spaces issue for antigen-bundles command
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnStarich committed Jul 16, 2017
1 parent 7acefe8 commit 73b1298
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/antigen.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -1715,7 +1715,7 @@ antigen-ext-init () {

builtin local bundle &> /dev/null
for bundle in ${_PARALLEL_BUNDLE[@]}; do
antigen-bundle $bundle
antigen-bundle ${=bundle}
done


Expand Down
2 changes: 1 addition & 1 deletion src/ext/parallel.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

builtin local bundle &> /dev/null
for bundle in ${_PARALLEL_BUNDLE[@]}; do
antigen-bundle $bundle
antigen-bundle ${=bundle}
done


Expand Down
4 changes: 4 additions & 0 deletions tests/bundles.t
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,7 @@ Again, check if they are both applied.
hehe
$ hehe2
hehe2

Add bundle theme (contains spaces).

$ echo "$PLUGIN_DIR silly --btype=theme" | antigen-bundles &> /dev/null

0 comments on commit 73b1298

Please sign in to comment.