summaryrefslogtreecommitdiff
path: root/apt.go
diff options
context:
space:
mode:
Diffstat (limited to 'apt.go')
-rw-r--r--apt.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/apt.go b/apt.go
index 7cd3fc0..ff6a6c4 100644
--- a/apt.go
+++ b/apt.go
@@ -50,5 +50,7 @@ func aptUpdate() {
badExit(err)
}
- aptInstall("wit-tools")
+ if found := me.machine.FindInstalledByName("wit-tools"); found == nil {
+ aptInstall("wit-tools")
+ }
}