@3-/srv-darwin 0.1.38 → 0.1.40

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @3-/srv-darwin
2
2
 
3
+ ## 0.1.40
4
+
5
+ ### Patch Changes
6
+
7
+ - auto update
8
+
9
+ ## 0.1.39
10
+
11
+ ### Patch Changes
12
+
13
+ - auto update
14
+
3
15
  ## 0.1.38
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@3-/srv-darwin",
3
- "version": "0.1.38",
3
+ "version": "0.1.40",
4
4
  "os": [
5
5
  "darwin"
6
6
  ],
package/uninstall.js CHANGED
@@ -9,7 +9,7 @@ export default async (name, onErr = console.error) => {
9
9
  plist_path = join(launch_agents_dir, `${name}.plist`);
10
10
 
11
11
  try {
12
- await $`launchctl bootout user/$(id -u) ${plist_path}`;
12
+ await $`launchctl bootout user/$(id -u) ${plist_path}`.quiet();
13
13
  } catch (e) { onErr(e); }
14
14
  await fs.rm(plist_path, { force: true });
15
15
  };