gitarsenal-cli 1.9.10 → 1.9.11
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 +1 -1
- package/bin/gitarsenal.js +7 -1
- package/package.json +1 -1
package/.venv_status.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"created":"2025-08-04T14:
|
|
1
|
+
{"created":"2025-08-04T14:50:01.089Z","packages":["modal","gitingest","requests"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
|
package/bin/gitarsenal.js
CHANGED
|
@@ -419,7 +419,7 @@ async function runContainerCommand(options) {
|
|
|
419
419
|
}
|
|
420
420
|
|
|
421
421
|
// Prompt for persistent volume
|
|
422
|
-
if (!volumeName) {
|
|
422
|
+
if (!volumeName && !skipConfirmation) {
|
|
423
423
|
const volumeAnswers = await inquirer.prompt([
|
|
424
424
|
{
|
|
425
425
|
type: 'confirm',
|
|
@@ -439,6 +439,9 @@ async function runContainerCommand(options) {
|
|
|
439
439
|
if (volumeAnswers.useVolume) {
|
|
440
440
|
volumeName = volumeAnswers.volumeName;
|
|
441
441
|
}
|
|
442
|
+
} else if (!volumeName && skipConfirmation) {
|
|
443
|
+
// If --yes flag is used and no volume specified, use default
|
|
444
|
+
volumeName = 'gitarsenal-volume';
|
|
442
445
|
}
|
|
443
446
|
|
|
444
447
|
// Ask about setup command detection if not specified via CLI
|
|
@@ -453,6 +456,9 @@ async function runContainerCommand(options) {
|
|
|
453
456
|
]);
|
|
454
457
|
|
|
455
458
|
useApi = apiAnswers.useApi;
|
|
459
|
+
} else if (options.yes) {
|
|
460
|
+
// If --yes flag is used, default to using API for setup command detection
|
|
461
|
+
useApi = true;
|
|
456
462
|
}
|
|
457
463
|
|
|
458
464
|
// Only prompt for custom commands if auto-detection is disabled and no commands provided
|