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 8cccb0b commit a142545Copy full SHA for a142545
neurons/edge.sh
@@ -45,6 +45,9 @@ case "$1" in
45
VERSION_URL=$(curl -s https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/ | grep -o '<a href="[^"]*deb"' | grep -o '[^"]*deb' | sort -V | tail -n 1)
46
LATEST_WEB_VERSION=$(basename "$VERSION_URL" | grep -oP "(?<=microsoft-edge-stable_)\d+(\.\d+)+(-\d+)?")
47
LATEST_LOCAL_VERSION=$(dpkg -s microsoft-edge-stable | grep Version | awk '{print $2}')
48
+ elif [ -x "$(command -v rpm)" ]; then
49
+ echo "Soon..."
50
+ exit 1
51
fi
52
echo "Latest web version: $LATEST_WEB_VERSION"
53
echo "Latest local version: $LATEST_LOCAL_VERSION"
0 commit comments