pinokiod 3.325.0 → 3.326.0
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/package.json +1 -1
- package/server/index.js +5 -0
package/package.json
CHANGED
package/server/index.js
CHANGED
|
@@ -234,6 +234,11 @@ class Server {
|
|
|
234
234
|
dirty = true
|
|
235
235
|
}
|
|
236
236
|
|
|
237
|
+
if (config['credential "helperselector"']) {
|
|
238
|
+
delete config['credential "helperselector"']
|
|
239
|
+
dirty = true
|
|
240
|
+
}
|
|
241
|
+
|
|
237
242
|
if (dirty) {
|
|
238
243
|
await fs.promises.writeFile(gitconfigPath, ini.stringify(config))
|
|
239
244
|
}
|