We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46489c2 commit 49ea494Copy full SHA for 49ea494
images/macos/provision/configuration/cleanup-brew.sh
@@ -0,0 +1,7 @@
1
+#!/bin/bash -e -o pipefail
2
+###########################################################################
3
+# The script removes local Homebrew cache
4
+#
5
6
+
7
+rm -rf "$(brew --cache)"
images/macos/templates/macOS-13.anka.pkr.hcl
@@ -246,6 +246,7 @@ build {
246
provisioner "shell" {
247
scripts = [
248
"./provision/configuration/configure-hostname.sh",
249
+ "./provision/configuration/cleanup-brew.sh",
250
"./provision/configuration/finalize-vm.sh"
251
]
252
execute_command = "chmod +x {{ .Path }}; source $HOME/.bash_profile; {{ .Vars }} {{ .Path }}"
0 commit comments