Commit 3e667d9
committed
fix: ensure --allow-self-signed works when placed before subcommand
The cli() function needs to accept the allow_self_signed parameter
to handle the case where --allow-self-signed is placed before the
subcommand (e.g., 'ggshield --allow-self-signed api-status').
Without this, the callback can't update the config at that stage
because ctx.obj is None, breaking backward compatibility.
Added test to verify both placements work:
- ggshield api-status --allow-self-signed ✓
- ggshield --allow-self-signed api-status ✓
Issue: SCRT-59521 parent 9deb1cf commit 3e667d9
2 files changed
+22
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
81 | 81 | | |
82 | 82 | | |
83 | 83 | | |
| 84 | + | |
84 | 85 | | |
85 | 86 | | |
86 | 87 | | |
| |||
100 | 101 | | |
101 | 102 | | |
102 | 103 | | |
103 | | - | |
104 | | - | |
| 104 | + | |
| 105 | + | |
105 | 106 | | |
106 | 107 | | |
107 | 108 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
135 | 135 | | |
136 | 136 | | |
137 | 137 | | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
138 | 157 | | |
139 | 158 | | |
140 | 159 | | |
| |||
0 commit comments