diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-05-27 21:32:48 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-05-27 21:32:48 -0400 |
commit | 4ddd937d3d4c17ed333e20f3cf5f467a8c3de46b (patch) | |
tree | d7f7c109100f5603a58f87422067580ee1939d22 | |
parent | fba3ce4d5ba5ec9093a1cfa397e4432f24d7f44a (diff) | |
download | dm-4ddd937d3d4c17ed333e20f3cf5f467a8c3de46b.tar.gz |
uninstall -> remove
-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 e14f07a..7ee1746 100644 --- a/source/merge.d +++ b/source/merge.d @@ -177,7 +177,7 @@ auto integration_test(ref Conda conda, string outdir, test_runner_t runner, test string[] tmp = found.split("-"); found = tmp[0]; // Does not need to succeed for all matches - conda.run("uninstall " ~ found); + conda.run("remove" ~ found); } if (runner.requires) { |