crackerjack 0.37.0__py3-none-any.whl → 0.37.1__py3-none-any.whl
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.
Potentially problematic release.
This version of crackerjack might be problematic. Click here for more details.
- crackerjack/cli/interactive.py +16 -4
- {crackerjack-0.37.0.dist-info → crackerjack-0.37.1.dist-info}/METADATA +2 -2
- {crackerjack-0.37.0.dist-info → crackerjack-0.37.1.dist-info}/RECORD +6 -6
- {crackerjack-0.37.0.dist-info → crackerjack-0.37.1.dist-info}/WHEEL +0 -0
- {crackerjack-0.37.0.dist-info → crackerjack-0.37.1.dist-info}/entry_points.txt +0 -0
- {crackerjack-0.37.0.dist-info → crackerjack-0.37.1.dist-info}/licenses/LICENSE +0 -0
crackerjack/cli/interactive.py
CHANGED
|
@@ -447,10 +447,22 @@ class InteractiveCLI:
|
|
|
447
447
|
default=options.clean,
|
|
448
448
|
)
|
|
449
449
|
updated_options.test = Confirm.ask("🧪 Run tests?", default=options.test)
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
450
|
+
|
|
451
|
+
# Only ask about commit if not explicitly set via command line
|
|
452
|
+
# Check if commit was explicitly provided by looking at original vs default
|
|
453
|
+
from ..cli.options import Options
|
|
454
|
+
|
|
455
|
+
default_options = Options()
|
|
456
|
+
if options.commit != default_options.commit:
|
|
457
|
+
# Command line flag was used, preserve it
|
|
458
|
+
self.console.print(f"📝 Using command line flag: --commit={options.commit}")
|
|
459
|
+
updated_options.commit = options.commit # Preserve the command line value
|
|
460
|
+
else:
|
|
461
|
+
# No command line flag, ask user
|
|
462
|
+
updated_options.commit = Confirm.ask(
|
|
463
|
+
"📝 Commit changes to git?",
|
|
464
|
+
default=options.commit,
|
|
465
|
+
)
|
|
454
466
|
if not any([options.publish, options.all, options.bump]):
|
|
455
467
|
if Confirm.ask("📦 Bump version and publish?", default=False):
|
|
456
468
|
version_type = Prompt.ask(
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: crackerjack
|
|
3
|
-
Version: 0.37.
|
|
3
|
+
Version: 0.37.1
|
|
4
4
|
Summary: Crackerjack Python project management tool
|
|
5
5
|
Project-URL: documentation, https://github.com/lesleslie/crackerjack
|
|
6
6
|
Project-URL: homepage, https://github.com/lesleslie/crackerjack
|
|
7
7
|
Project-URL: repository, https://github.com/lesleslie/crackerjack
|
|
8
|
-
Author-email: Les Leslie <les@
|
|
8
|
+
Author-email: Les Leslie <les@wedgwoodwebworks.com>
|
|
9
9
|
License: BSD-3-CLAUSE
|
|
10
10
|
License-File: LICENSE
|
|
11
11
|
Classifier: Operating System :: POSIX
|
|
@@ -33,7 +33,7 @@ crackerjack/cli/cache_handlers.py,sha256=Wa-1ZJdWO7RufLd6Fo62pUTij-a3epFi92h5CfJ
|
|
|
33
33
|
crackerjack/cli/cache_handlers_enhanced.py,sha256=6X5rYSo1l-rj9eb7eB8mpA-6BlUagyDu-IvCaHwYy5k,24841
|
|
34
34
|
crackerjack/cli/facade.py,sha256=e4_oB04awqEijI3yqiYAZGc6x09uMBa4ih0SsXpgMuY,3751
|
|
35
35
|
crackerjack/cli/handlers.py,sha256=mYhwMLUKid6mQLff0ScpcnhP0yUS9IzOIMdM7VLkUCc,17178
|
|
36
|
-
crackerjack/cli/interactive.py,sha256=
|
|
36
|
+
crackerjack/cli/interactive.py,sha256=E7WgzgNRlgOuKLbi5Io3RQ3BBXS8sIDiUQcJh6b2x9I,17583
|
|
37
37
|
crackerjack/cli/options.py,sha256=tpvOMQHrL7-j9wuo2_NwvzJTAWF3XcyeOEonQPbepa4,35433
|
|
38
38
|
crackerjack/cli/utils.py,sha256=XC7dT8GNidhORjUe2p2hQOpZgCi2KvVCNu6g3azzgqY,584
|
|
39
39
|
crackerjack/config/__init__.py,sha256=b0481N2f_JvGufMPcbo5IXu2VjYd111r1BHw0oD3x7o,330
|
|
@@ -224,8 +224,8 @@ crackerjack/tools/validate_input_validator_patterns.py,sha256=NN7smYlXWrHLQXTb-8
|
|
|
224
224
|
crackerjack/tools/validate_regex_patterns.py,sha256=9ejFb7Tw1js_oydzuEeeeXvrU5ipHUEX9ATBfkLCCE8,5811
|
|
225
225
|
crackerjack/ui/__init__.py,sha256=eMb1OeTU-dSLICAACn0YdYB4Amdr8wHckjKfn0wOIZE,37
|
|
226
226
|
crackerjack/ui/server_panels.py,sha256=F5IH6SNN06BaZQMsFx_D-OA286aojmaFPJ5kvvSRv_c,4232
|
|
227
|
-
crackerjack-0.37.
|
|
228
|
-
crackerjack-0.37.
|
|
229
|
-
crackerjack-0.37.
|
|
230
|
-
crackerjack-0.37.
|
|
231
|
-
crackerjack-0.37.
|
|
227
|
+
crackerjack-0.37.1.dist-info/METADATA,sha256=hUdkO086JbwxJ19OIAPm1eGnU7CrzNLWc20ZtcZ4PQg,37949
|
|
228
|
+
crackerjack-0.37.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
229
|
+
crackerjack-0.37.1.dist-info/entry_points.txt,sha256=AJKNft0WXm9xoGUJ3Trl-iXHOWxRAYbagQiza3AILr4,57
|
|
230
|
+
crackerjack-0.37.1.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
|
|
231
|
+
crackerjack-0.37.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|