diff --git a/src/index.js b/src/index.js index 7f51f8d..7ec4ee2 100644 --- a/src/index.js +++ b/src/index.js @@ -25,7 +25,7 @@ async function run() { if (workspaceExists && workspaceNotEmpty) { // Escaping quotes in the options array const escapedOptions = options.map((str) => - str.replace(/(["'])/g, '\\$1'), + str.replace(/(["'])/g, "\\$1"), ); // Debugging output to check the escaped options