We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 909762d commit c47dbaeCopy full SHA for c47dbae
pkg/blobfuse-proxy/install-proxy.sh
@@ -74,12 +74,12 @@ then
74
pkg_list="${pkg_list} blobfuse2"
75
else
76
if echo "${BLOBFUSE2_VERSION}" | grep -q "preview"; then
77
- if dpkg -l | grep -q blobfuse2; then
+ if $HOST_CMD dpkg -l | grep -q blobfuse2; then
78
$HOST_CMD apt-get remove -y blobfuse2
79
fi
80
pkg_list="${pkg_list} blobfuse2-preview=${BLOBFUSE2_VERSION}"
81
82
- if dpkg -l | grep -q blobfuse2-preview; then
+ if $HOST_CMD dpkg -l | grep -q blobfuse2-preview; then
83
$HOST_CMD apt-get remove -y blobfuse2-preview
84
85
pkg_list="${pkg_list} blobfuse2=${BLOBFUSE2_VERSION}"
0 commit comments