Skip to content

Commit 66d6c41

Browse files
authored
chore: fix build.sh deps script (#2492)
This fixes an error inbuild.sh deps command. Now the docker container image hashes will be updated correctly.
1 parent 57d1a41 commit 66d6c41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ function dockerfile_from_deps() {
165165
else
166166
echo "Updating docker image to $file to $digest"
167167
set -x
168-
sed -i "" "s/$oldDigest/$digest/g" "$file"
168+
sed -ibak -e "s/$oldDigest/$digest/g" "$file"
169169
fi
170170

171171
}

0 commit comments

Comments
 (0)