We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3215879 commit 47fd6c4Copy full SHA for 47fd6c4
bin/release-binary.sh
@@ -25,4 +25,9 @@ fi
25
26
echo "Release: $FIELD as $VERSION"
27
28
-mongo "${MONGO_URL}" --username="${MONGO_USERNAME}" --password="${MONGO_PASSWORD}" -eval "db.application.updateOne({}, {\$set: { \"$FIELD\": \"$VERSION\"}});"
+docker run mongo:3.2 mongo "${MONGO_URL}" \
29
+ --username="${MONGO_USERNAME}" \
30
+ --password="${MONGO_PASSWORD}" \
31
+ --quiet \
32
+ --eval "db.application.updateOne({}, {\$set: { \"$FIELD\": \"$VERSION\"}});"
33
+
0 commit comments