OPENIDE #116 Disable plugin suggestions in EditorNotificationPanel

(cherry picked from commit 3eb456992c)
(cherry picked from commit 2001e6fd9e)
This commit is contained in:
Nikita Iarychenko
2025-07-24 19:01:50 +04:00
parent 9e7ceed99d
commit 14f5efd340

View File

@@ -1,4 +1,7 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
//
// Modified by Nikita Iarychenko at 2025 as part of the OpenIDE project(https://openide.ru).
// Any modifications are available on the same license terms as the original source code.
package com.intellij.sh.shellcheck;
import com.intellij.execution.ExecutionException;
@@ -61,8 +64,7 @@ public final class ShShellcheckUtil {
private static final String SHELLCHECK_VERSION = "0.10.0";
private static final String SHELLCHECK_ARTIFACT_VERSION = SHELLCHECK_VERSION + "-1";
private static final String SHELLCHECK_ARCHIVE_EXTENSION = ".tar.gz";
private static final String SHELLCHECK_URL =
"https://cache-redirector.jetbrains.com/intellij-dependencies/org/jetbrains/intellij/deps/shellcheck/shellcheck/";
private static final String SHELLCHECK_URL = "https://download.openide.ru/deps/shellcheck/";
public static void download(@NotNull Project project, @NotNull Runnable onSuccess, @NotNull Runnable onFailure) {
download(project, onSuccess, onFailure, false);