Commit 72fae27c8c3cbd791dca1fd50261fb367e9a28dd
1 parent
47c6bacd22
Inputs to `comm` should be sorted.
Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff
antigen.zsh
... | ... | @@ -235,7 +235,8 @@ antigen-cleanup () { |
235 | 235 | <(ls "$ADOTDIR/repos" \ |
236 | 236 | | while read line; do |
237 | 237 | -antigen-get-clone-url "$line" |
238 | - done))" | |
238 | + done \ | |
239 | + | sort -u))" | |
239 | 240 | |
240 | 241 | if [[ -z $unused_clones ]]; then |
241 | 242 | echo "You don't have any unidentified bundles." |