From e539d7f603c414901b18324ea0a48a13fb02c501 Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Mon, 30 Jun 2025 11:00:34 -0400 Subject: [PATCH] chore: remove rclone (#1447) since unraid will ship with it natively, starting at 7.2. rclone support is not planned for earlier releases. ## Summary by CodeRabbit * **Chores** * Removed an unnecessary step from the build process, streamlining operations. --- plugin/builder/build-txz.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugin/builder/build-txz.ts b/plugin/builder/build-txz.ts index 39b6766bd..0a69df3dc 100644 --- a/plugin/builder/build-txz.ts +++ b/plugin/builder/build-txz.ts @@ -10,7 +10,6 @@ import { cleanupTxzFiles } from "./utils/cleanup"; import { apiDir } from "./utils/paths"; import { getVendorBundleName, getVendorFullPath } from "./build-vendor-store"; import { getAssetUrl } from "./utils/bucket-urls"; -import { ensureRclone } from "./utils/rclone-helper"; // Recursively search for manifest files @@ -176,7 +175,6 @@ const buildTxz = async (validatedEnv: TxzEnv) => { await Promise.all([ ensureNodeJs(), - ensureRclone() ]); // Create package - must be run from within the pre-pack directory