From 28f8af314742a0775bf09e146543cdc164cf4f29 Mon Sep 17 00:00:00 2001 From: Travis Glenn Hansen Date: Sat, 2 Mar 2024 13:22:16 -0700 Subject: [PATCH] return input when store empty Signed-off-by: Travis Glenn Hansen --- src/utils/objectivefs.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/objectivefs.js b/src/utils/objectivefs.js index 17f4ddd..23392d5 100644 --- a/src/utils/objectivefs.js +++ b/src/utils/objectivefs.js @@ -271,6 +271,7 @@ class ObjectiveFS { if (filesystem.includes("://")) { return GeneralUtils.after_string("://"); } + return filesystem; } exec(command, args, options = {}) {