mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-03-14 22:26:58 +01:00
npm run format
This commit is contained in:
parent
cb0e07d80e
commit
7349bad731
2 changed files with 4 additions and 4 deletions
4
dist/setup/index.js
vendored
4
dist/setup/index.js
vendored
|
@ -99615,9 +99615,9 @@ function useCpythonVersion(version, architecture, updateEnvironment, checkLatest
|
|||
// Check for x32 or x86 and append the '-32' suffix
|
||||
// Check for x32 or x86 and append the '-32' suffix
|
||||
if (architecture === 'x32' || architecture === 'x86') {
|
||||
arch = `32`; // Always add '-32' for both x32 and x86 architectures
|
||||
arch = `-32`; // Always add '-32' for both x32 and x86 architectures
|
||||
}
|
||||
const userScriptsDir = path.join(process.env['APPDATA'] || '', 'Python', `Python${major}${minor}-${arch}`, // Add architecture-specific folder (e.g., Python310-64 or Python310-32)
|
||||
const userScriptsDir = path.join(process.env['APPDATA'] || '', 'Python', `Python${major}${minor}${arch}`, // Add architecture-specific folder (e.g., Python310-64 or Python310-32)
|
||||
'Scripts');
|
||||
// Add the dynamically constructed path to the environment PATH variable
|
||||
core.addPath(userScriptsDir);
|
||||
|
|
|
@ -145,13 +145,13 @@ export async function useCpythonVersion(
|
|||
// Check for x32 or x86 and append the '-32' suffix
|
||||
// Check for x32 or x86 and append the '-32' suffix
|
||||
if (architecture === 'x32' || architecture === 'x86') {
|
||||
arch = `32`; // Always add '-32' for both x32 and x86 architectures
|
||||
arch = `-32`; // Always add '-32' for both x32 and x86 architectures
|
||||
}
|
||||
|
||||
const userScriptsDir = path.join(
|
||||
process.env['APPDATA'] || '',
|
||||
'Python',
|
||||
`Python${major}${minor}-${arch}`, // Add architecture-specific folder (e.g., Python310-64 or Python310-32)
|
||||
`Python${major}${minor}${arch}`, // Add architecture-specific folder (e.g., Python310-64 or Python310-32)
|
||||
'Scripts'
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue