diff --git a/plugins/sh/core/src/com/intellij/sh/shellcheck/ShShellcheckUtil.java b/plugins/sh/core/src/com/intellij/sh/shellcheck/ShShellcheckUtil.java index b1bce3757253..23265e95912c 100644 --- a/plugins/sh/core/src/com/intellij/sh/shellcheck/ShShellcheckUtil.java +++ b/plugins/sh/core/src/com/intellij/sh/shellcheck/ShShellcheckUtil.java @@ -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; @@ -64,8 +67,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);