Skip to content

Commit

Permalink
fix(sync): use right arch of mutagen-agent binary in k8s-sync ima…
Browse files Browse the repository at this point in the history
…ge (#6465)

fix: issue with k8s-sync's mutagen-agent binary being the wrong architecture
  • Loading branch information
BraedonLeonard authored Sep 24, 2024
1 parent 86a1e65 commit 66e5a75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/k8s-sync/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN MUTAGEN_VERSION="0.17.6" && \
echo "2a383cb572a1bdad83f7c4be3cc4a541a58e6c9e11e326ee4cc2d0e14f9d003a ${mutagen_distr_name}" | sha256sum -c; \
fi && \
tar xzf ${mutagen_distr_name} --to-stdout mutagen-agents.tar.gz \
| tar xz --to-stdout linux_amd64 > /usr/local/bin/mutagen-agent && \
| tar xz --to-stdout linux_${TARGETARCH} > /usr/local/bin/mutagen-agent && \
rm ${mutagen_distr_name} && \
chmod +x /usr/local/bin/mutagen-agent && \
mkdir -p /.garden && \
Expand Down

0 comments on commit 66e5a75

Please sign in to comment.