Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvz committed Jun 14, 2024
1 parent ad975bf commit b561ebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/blobfuse-proxy/install-proxy-rhcos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ set -xe
# in coreos, we could just copy the blobfuse2 binary to /usr/local/bin/blobfuse2
if [ "${INSTALL_BLOBFUSE}" = "true" ] || [ "${INSTALL_BLOBFUSE2}" = "true" ]
then
echo "copy blobfuse2...."
old=$(sha256sum /host/usr/local/bin/blobfuse2 | awk '{print $1}')
new=$(sha256sum /usr/bin/blobfuse2 | awk '{print $1}')
if [ "$old" != "$new" ];then
echo "copy blobfuse2...."
cp /usr/bin/blobfuse2 /host/usr/local/bin/blobfuse2 --force
fi
fi
Expand Down

0 comments on commit b561ebd

Please sign in to comment.