Commit d4babb9
committed
cmd/git(fix[Git.run]): Fix boolean config serialization typo
why: The stringify helper used `if True` instead of `if v`, causing all
boolean config values to serialize as "true" regardless of actual value.
what:
- Change `return "true" if True else "false"` to `if v else "false"`1 parent ca7a3b7 commit d4babb9
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
243 | 243 | | |
244 | 244 | | |
245 | 245 | | |
246 | | - | |
| 246 | + | |
247 | 247 | | |
248 | 248 | | |
249 | 249 | | |
| |||
0 commit comments