diff --git a/python/ouroboros/common/file_system.py b/python/ouroboros/common/file_system.py index 9e912be..4c01914 100644 --- a/python/ouroboros/common/file_system.py +++ b/python/ouroboros/common/file_system.py @@ -1,4 +1,3 @@ -import asyncio import os from pathlib import Path from ouroboros.common.volume_server_interface import ( diff --git a/resources/processes/volume-server-script.mjs b/resources/processes/volume-server-script.mjs index e893f06..b68a8f9 100644 --- a/resources/processes/volume-server-script.mjs +++ b/resources/processes/volume-server-script.mjs @@ -149,10 +149,12 @@ function deleteFilesFromVolumeFolder(volumeName, targetFolder) { // Construct the Docker command const command = ` docker run --rm -v ${volumeName}:/volume alpine sh -c " - rm -rf '${targetFolderPath}'" + rm -rf ${targetFolderPath}" ` .replace(/\s+/g, ' ') .trim() + console.log(command) + return command }