Skip to content

Commit 54f3483

Browse files
authored
Ensure box remove uses force (#99)
1 parent f120408 commit 54f3483

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vagrant/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ def box_remove(self, name, provider):
838838
Removes the box matching name and provider. It is an error if no box
839839
matches name and provider.
840840
"""
841-
self._call_vagrant_command(["box", "remove", name, provider])
841+
self._call_vagrant_command(["box", "remove", "--force", name, provider])
842842

843843
def plugin_list(self):
844844
"""

0 commit comments

Comments
 (0)