diff options
| -rw-r--r-- | source/merge.d | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/source/merge.d b/source/merge.d index 4e878d9..ae148a2 100644 --- a/source/merge.d +++ b/source/merge.d @@ -173,7 +173,7 @@ auto integration_test(ref Conda conda, string outdir, test_runner_t runner, test          return 1;      } -    foreach (string found; conda.scan_packages(repo_root.baseName ~ "*")) { +    foreach (string found; conda.scan_packages(repo_root.baseName ~ "*").sort.uniq) {          string[] tmp = found.split("-");          found = tmp[0];          // Does not need to succeed for all matches  | 
