gitarsenal-cli 1.9.42 → 1.9.44

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/.venv_status.json CHANGED
@@ -1 +1 @@
1
- {"created":"2025-08-11T17:28:28.278Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
1
+ {"created":"2025-08-11T18:21:13.848Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
package/bin/gitarsenal.js CHANGED
@@ -23,7 +23,7 @@ function activateVirtualEnvironment() {
23
23
  const statusFile = path.join(__dirname, '..', '.venv_status.json');
24
24
 
25
25
  // Debug: Log the path we're looking for
26
- console.log(chalk.gray(`šŸ” Looking for virtual environment at: ${venvPath}`));
26
+ // console.log(chalk.gray(`šŸ” Looking for virtual environment at: ${venvPath}`));
27
27
 
28
28
  // Check if virtual environment exists
29
29
  if (!fs.existsSync(venvPath)) {
@@ -945,7 +945,7 @@ async function runContainerCommand(options) {
945
945
  }
946
946
 
947
947
  // Confirm settings (configuration will be shown by Python script after GPU selection)
948
- console.log(chalk.gray(`šŸ” Debug: skipConfirmation = ${skipConfirmation}, options.yes = ${options.yes}`));
948
+ // console.log(chalk.gray(`šŸ” Debug: skipConfirmation = ${skipConfirmation}, options.yes = ${options.yes}`));
949
949
  if (!skipConfirmation) {
950
950
  const confirmAnswers = await inquirer.prompt([
951
951
  {
@@ -967,7 +967,7 @@ async function runContainerCommand(options) {
967
967
 
968
968
  // Run the container
969
969
  try {
970
- console.log(chalk.gray(`šŸ” Debug: skipConfirmation = ${skipConfirmation}`));
970
+ // console.log(chalk.gray(`šŸ” Debug: skipConfirmation = ${skipConfirmation}`));
971
971
  await runContainer({
972
972
  repoUrl,
973
973
  gpuType,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitarsenal-cli",
3
- "version": "1.9.42",
3
+ "version": "1.9.44",
4
4
  "description": "CLI tool for creating Modal sandboxes with GitHub repositories",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -2244,7 +2244,8 @@ if __name__ == "__main__":
2244
2244
  print("\nšŸ›‘ Operation cancelled by user.")
2245
2245
  sys.exit(0)
2246
2246
  else:
2247
- print("šŸ” Debug: yes parameter = true")
2247
+ # print("šŸ” Debug: yes parameter = true")
2248
+ print("")
2248
2249
 
2249
2250
  # Interactive mode or missing required arguments
2250
2251
  if args.interactive or not args.repo_url or not args.volume_name: