From caa5717450737f8146f25815eeff441b54c166a0 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Mon, 11 Aug 2025 12:48:35 +0100 Subject: [PATCH] dist --- dist/index.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 666ef16..7902246 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1141,7 +1141,9 @@ function prepareExistingDirectory(git_1, repositoryPath_1, repositoryUrl_1, clea // We still need to make sure we have a git repository to work with if (!git) { core.info(`Initializing git repository to prepare for checkout with preserved changes`); - yield fs.promises.mkdir(path.join(repositoryPath, '.git'), { recursive: true }); + yield fs.promises.mkdir(path.join(repositoryPath, '.git'), { + recursive: true + }); } } }); @@ -1888,7 +1890,9 @@ function getInputs() { result.clean = (core.getInput('clean') || 'true').toUpperCase() === 'TRUE'; core.debug(`clean = ${result.clean}`); // Preserve local changes - result.preserveLocalChanges = (core.getInput('preserve-local-changes') || 'false').toUpperCase() === 'TRUE'; + result.preserveLocalChanges = + (core.getInput('preserve-local-changes') || 'false').toUpperCase() === + 'TRUE'; core.debug(`preserveLocalChanges = ${result.preserveLocalChanges}`); // Filter const filter = core.getInput('filter');