bdy 1.22.3-dev → 1.22.4-dev

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bdy",
3
3
  "preferGlobal": false,
4
- "version": "1.22.3-dev",
4
+ "version": "1.22.4-dev",
5
5
  "type": "commonjs",
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -351,7 +351,12 @@ class AgentSystem {
351
351
  }), {
352
352
  encoding: 'utf-8',
353
353
  });
354
- (0, node_fs_1.chmodSync)(this.getNewAgentConfigPath(), 0o666);
354
+ try {
355
+ (0, node_fs_1.chmodSync)(this.getNewAgentConfigPath(), 0o666);
356
+ }
357
+ catch {
358
+ // do nothing, file can already have proper mode
359
+ }
355
360
  return true;
356
361
  }
357
362
  catch (err) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bdy",
3
3
  "preferGlobal": false,
4
- "version": "1.22.3-dev",
4
+ "version": "1.22.4-dev",
5
5
  "type": "commonjs",
6
6
  "license": "MIT",
7
7
  "scripts": {