fix(netdata-updater): resolve "run: command not found" error in offline install (#20915)
Ilya Mashchenko committed
Sep 2, 2025 at 23:36 UTC
33c4c357df705084d4627ba1be845b718cfb6b35
1 file changed
+1
-1
packaging/installer/netdata-updater.sh
+1
-1
@@ -561,7 +561,7 @@ _safe_download() {
561
checked=0
562
563
if echo "${url}" | grep -Eq "^file:///"; then
564
- run cp "${url#file://}" "${dest}" || return 1
564
+ cp "${url#file://}" "${dest}" || return 1
565
return 0
566
fi
567