pinokiod 8.0.10 → 8.0.11

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.
@@ -271,8 +271,6 @@ report_errors: false`)
271
271
  await removePath(target, {
272
272
  recursive: true,
273
273
  force: true,
274
- maxRetries: 5,
275
- retryDelay: 250,
276
274
  operation: "Updating Miniforge",
277
275
  })
278
276
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "8.0.10",
3
+ "version": "8.0.11",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/server/index.js CHANGED
@@ -16270,8 +16270,6 @@ class Server {
16270
16270
  await removePath(runtimePath, {
16271
16271
  recursive: true,
16272
16272
  force: true,
16273
- maxRetries: 5,
16274
- retryDelay: 250,
16275
16273
  operation: "Updating Miniforge",
16276
16274
  })
16277
16275
  }
@@ -16281,8 +16279,6 @@ class Server {
16281
16279
  await removePath(folderPath, {
16282
16280
  recursive: true,
16283
16281
  force: true,
16284
- maxRetries: 5,
16285
- retryDelay: 250,
16286
16282
  operation: "Resetting managed tools",
16287
16283
  })
16288
16284
  await fs.promises.mkdir(folderPath, { recursive: true }).catch((e) => { })
@@ -16292,8 +16288,6 @@ class Server {
16292
16288
  await removePath(folderPath, {
16293
16289
  recursive: true,
16294
16290
  force: true,
16295
- maxRetries: 5,
16296
- retryDelay: 250,
16297
16291
  operation: "Clearing the Pinokio cache",
16298
16292
  })
16299
16293
  await fs.promises.mkdir(folderPath, { recursive: true }).catch((e) => { })
@@ -16316,8 +16310,6 @@ class Server {
16316
16310
  await removePath(folderPath, {
16317
16311
  recursive: true,
16318
16312
  force: true,
16319
- maxRetries: 5,
16320
- retryDelay: 250,
16321
16313
  operation: `Deleting ${req.body.name}`,
16322
16314
  })
16323
16315
  // await fs.promises.mkdir(folderPath, { recursive: true }).catch((e) => { })
@@ -57,8 +57,6 @@ test("Windows integration: loaded DLL is diagnosed and removable after release",
57
57
  removePath(root, {
58
58
  recursive: true,
59
59
  force: true,
60
- maxRetries: 1,
61
- retryDelay: 50,
62
60
  operation: "Windows integration test",
63
61
  }),
64
62
  (error) => {