From 3ee6432b687b20dfd2783624e9546daa9ee0d0fa Mon Sep 17 00:00:00 2001 From: Jonathan Hess Date: Mon, 6 Oct 2025 23:19:01 +0000 Subject: [PATCH] chore: fix build.sh deps script This fixes an error inbuild.sh deps command. Now the docker container image hashes will be updated correctly. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 48f3e5fb2..34532205e 100755 --- a/build.sh +++ b/build.sh @@ -165,7 +165,7 @@ function dockerfile_from_deps() { else echo "Updating docker image to $file to $digest" set -x - sed -i "" "s/$oldDigest/$digest/g" "$file" + sed -ibak -e "s/$oldDigest/$digest/g" "$file" fi }