diff --git a/dist/index.js b/dist/index.js index dab386f0..c395397d 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/dist/index.js.map b/dist/index.js.map index 9da4174a..06c9bba3 100644 Binary files a/dist/index.js.map and b/dist/index.js.map differ diff --git a/dist/platforms/windows/entrypoint.ps1 b/dist/platforms/windows/entrypoint.ps1 index 9bd9b37f..c3f7a4f9 100644 --- a/dist/platforms/windows/entrypoint.ps1 +++ b/dist/platforms/windows/entrypoint.ps1 @@ -1,11 +1,5 @@ Get-Process -# List all files under C:\Users -Write-Host "Listing contents of C:\Users" -Get-ChildItem -Recurse "C:\Users" | ForEach-Object { - Write-Host ($_.FullName) -} - # Copy .upmconfig.toml if it exists if (Test-Path "C:\githubhome\.upmconfig.toml") { Write-Host "Copying .upmconfig.toml to $Env:USERPROFILE\.upmconfig.toml" diff --git a/src/model/docker.ts b/src/model/docker.ts index 21344429..48fc7f34 100644 --- a/src/model/docker.ts +++ b/src/model/docker.ts @@ -100,9 +100,6 @@ class Docker { dockerIsolationMode, } = parameters; - // 🔥 Add log for runnerTempPath - console.log(`🛠️ [DockerCommand] runnerTempPath = ${runnerTempPath}`); - const githubHome = path.join(runnerTempPath, '_github_home'); if (!existsSync(githubHome)) mkdirSync(githubHome); @@ -111,7 +108,6 @@ class Docker { --rm \ ${ImageEnvironmentFactory.getEnvVarString(parameters)} \ --env GITHUB_WORKSPACE=c:${dockerWorkspacePath} \ - --env UPM_GLOBAL_CONFIG_FILE="C:/githubhome/.upmconfig.toml" \ ${gitPrivateToken ? `--env GIT_PRIVATE_TOKEN="${gitPrivateToken}"` : ''} \ --volume "${workspace}":"c:${dockerWorkspacePath}" \ --volume "${githubHome}":"C:/githubhome" \ @@ -130,10 +126,6 @@ class Docker { ${image} \ powershell c:/steps/entrypoint.ps1`; - // 🔥 Add log for final dockerCommand - console.log('🛠️ [DockerCommand] Final Windows Docker command:'); - console.log(dockerCommand); - return dockerCommand; } }