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 38a9986 commit 909762dCopy full SHA for 909762d
pkg/blobfuse-proxy/install-proxy.sh
@@ -74,9 +74,14 @@ then
74
pkg_list="${pkg_list} blobfuse2"
75
else
76
if echo "${BLOBFUSE2_VERSION}" | grep -q "preview"; then
77
- $HOST_CMD apt remove -y blobfuse2
+ if 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
83
+ $HOST_CMD apt-get remove -y blobfuse2-preview
84
85
pkg_list="${pkg_list} blobfuse2=${BLOBFUSE2_VERSION}"
86
fi
87
0 commit comments