From f3a588ac10ba34080fac85359b447e0dcc44b1be Mon Sep 17 00:00:00 2001 From: Jason Hendry Date: Fri, 22 May 2026 16:16:04 +1000 Subject: [PATCH] fix EDGE_GPG_KEY not found error Use MS_GPG_KEYRING in place of EDGE_GPG_KEY var. --- Linux/Intune Installer/installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linux/Intune Installer/installer.sh b/Linux/Intune Installer/installer.sh index 7022c46..91bb485 100644 --- a/Linux/Intune Installer/installer.sh +++ b/Linux/Intune Installer/installer.sh @@ -274,7 +274,7 @@ case "$DISTRO" in if apt_repo_enrolled "packages.microsoft.com/repos/edge" "microsoft-edge.list"; then log "Microsoft Edge repo already enrolled, skipping." else - echo "deb [arch=$ARCH signed-by=$EDGE_GPG_KEY] https://packages.microsoft.com/repos/edge stable main" \ + echo "deb [arch=$ARCH signed-by=$MS_GPG_KEYRING] https://packages.microsoft.com/repos/edge stable main" \ | sudo tee /etc/apt/sources.list.d/microsoft-edge.list > /dev/null fi