summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGene Wood <gene_wood@cementhorizon.com>2022-11-01 16:43:33 -0700
committerGene Wood <gene_wood@cementhorizon.com>2022-11-01 16:43:33 -0700
commit25f9fdd47695402425e9f30259f49b382a1cd543 (patch)
tree8e0ce31c86a635e0d8e9023ab3bb0cefcea8158c
parent2775983b7003933dd3e952680f0ef836e65e30d4 (diff)
downloadchef-25f9fdd47695402425e9f30259f49b382a1cd543.tar.gz
Remove "free" command from buildkite run as it's not supported
This removes the call to run "free" in the buildkite environment as that binary isn't present. The call to "free" gives this error ``` C:/bk018435762483229395ad/.buildkite/hooks/pre-command: line 9: free: command not found ``` Signed-off-by: Gene Wood <gene_wood@cementhorizon.com>
-rw-r--r--.buildkite/hooks/pre-command1
1 files changed, 0 insertions, 1 deletions
diff --git a/.buildkite/hooks/pre-command b/.buildkite/hooks/pre-command
index 9af5d459b5..8789433886 100644
--- a/.buildkite/hooks/pre-command
+++ b/.buildkite/hooks/pre-command
@@ -6,7 +6,6 @@ set -eu
[[ "$BUILDKITE_PIPELINE_NAME" =~ verify$ ]] || exit 0
docker ps || true
-free -m || true
# We've now seen cases where origin/main on the build hosts can get
# out of date. This causes us to build components unnecessarily.