return input when store empty

Signed-off-by: Travis Glenn Hansen <travisghansen@yahoo.com>
This commit is contained in:
Travis Glenn Hansen 2024-03-02 13:22:16 -07:00
parent 8a1ac03b9f
commit 28f8af3147
1 changed files with 1 additions and 0 deletions

View File

@ -271,6 +271,7 @@ class ObjectiveFS {
if (filesystem.includes("://")) {
return GeneralUtils.after_string("://");
}
return filesystem;
}
exec(command, args, options = {}) {