gitarsenal-cli 1.9.3 → 1.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/gitarsenal.js +5 -5
- package/package.json +1 -1
package/bin/gitarsenal.js
CHANGED
|
@@ -39,7 +39,7 @@ function activateVirtualEnvironment() {
|
|
|
39
39
|
if (fs.existsSync(statusFile)) {
|
|
40
40
|
try {
|
|
41
41
|
const status = JSON.parse(fs.readFileSync(statusFile, 'utf8'));
|
|
42
|
-
console.log(chalk.gray(`✅ Virtual environment created: ${status.created}`));
|
|
42
|
+
// console.log(chalk.gray(`✅ Virtual environment created: ${status.created}`));
|
|
43
43
|
console.log(chalk.gray(`📦 Packages: ${status.packages.join(', ')}`));
|
|
44
44
|
} catch (error) {
|
|
45
45
|
console.log(chalk.gray('✅ Virtual environment found'));
|
|
@@ -62,16 +62,16 @@ function activateVirtualEnvironment() {
|
|
|
62
62
|
path.join(venvPath, 'bin', 'pip');
|
|
63
63
|
|
|
64
64
|
// Determine which structure exists
|
|
65
|
-
console.log(chalk.gray(`🔍 Checking virtual environment structure:`));
|
|
66
|
-
console.log(chalk.gray(` Python: ${uvPythonPath} (exists: ${fs.existsSync(uvPythonPath)})`));
|
|
67
|
-
console.log(chalk.gray(` Pip: ${uvPipPath} (exists: ${fs.existsSync(uvPipPath)})`));
|
|
65
|
+
// console.log(chalk.gray(`🔍 Checking virtual environment structure:`));
|
|
66
|
+
// console.log(chalk.gray(` Python: ${uvPythonPath} (exists: ${fs.existsSync(uvPythonPath)})`));
|
|
67
|
+
// console.log(chalk.gray(` Pip: ${uvPipPath} (exists: ${fs.existsSync(uvPipPath)})`));
|
|
68
68
|
|
|
69
69
|
// For uv virtual environments, we only need Python to exist
|
|
70
70
|
// uv doesn't create a pip executable, it uses 'uv pip' instead
|
|
71
71
|
if (fs.existsSync(uvPythonPath)) {
|
|
72
72
|
pythonPath = uvPythonPath;
|
|
73
73
|
pipPath = 'uv pip'; // Use uv pip instead of pip executable
|
|
74
|
-
console.log(chalk.gray('✅ Found uv-style virtual environment'));
|
|
74
|
+
// console.log(chalk.gray('✅ Found uv-style virtual environment'));
|
|
75
75
|
} else if (fs.existsSync(traditionalPythonPath) && fs.existsSync(traditionalPipPath)) {
|
|
76
76
|
pythonPath = traditionalPythonPath;
|
|
77
77
|
pipPath = traditionalPipPath;
|