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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server/index.js +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.325.0",
3
+ "version": "3.326.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
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
  }