From b115f76e765f415b8847c8a9b608928ac8a9cb57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D1=83=D1=80=D0=BD=D0=B0=D1=82=20=D0=90=D0=BD=D0=B4?= =?UTF-8?q?=D1=80=D0=B5=D0=B9?= Date: Tue, 21 Jul 2026 21:48:49 +0300 Subject: [PATCH] fix: use legacy SCP for Argus packages --- scripts/publish-argus-release.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/publish-argus-release.ps1 b/scripts/publish-argus-release.ps1 index 7a2e413..4955e9f 100644 --- a/scripts/publish-argus-release.ps1 +++ b/scripts/publish-argus-release.ps1 @@ -141,6 +141,7 @@ $remoteTarget = "$SshUser@$SshHost" $remoteSourceFile = "/tmp/$packageFile" Invoke-CheckedNativeCommand -FilePath "scp" -Arguments @( + "-O", $packagePath, "$remoteTarget`:$remoteSourceFile" )