From 738846df3850f5826151e1f38b4fc1ac5aa85004 Mon Sep 17 00:00:00 2001 From: Zero King Date: Wed, 20 Jun 2018 12:30:55 +0000 Subject: [PATCH] ci: force deactivate --- ci/portutil.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/portutil.go b/ci/portutil.go index 3fb1e60..4bab199 100644 --- a/ci/portutil.go +++ b/ci/portutil.go @@ -9,7 +9,7 @@ import ( // is needed across builds. It should be able to avoid // conflicts. func DeactivateAllPorts() { - deactivateCmd := exec.Command("port", "deactivate", "active") + deactivateCmd := exec.Command("port", "-fp", "deactivate", "active") deactivateCmd.Run() }