setup-kapelu 3.0.0 → 3.0.1

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/index.js +1 -2
  2. package/package.json +57 -15
package/index.js CHANGED
@@ -65,7 +65,7 @@ try {
65
65
  autoUpdateGitHub();
66
66
 
67
67
  console.log("šŸš€ Ejecutando install.sh\n");
68
- execSync("bash install.sh", { stdio: "inherit" });
68
+ execSync(`bash ${__dirname}/install.sh`, { stdio: "inherit" });
69
69
  } catch (err) {
70
70
  console.error("\nāŒ Error ejecutando Post-Install:", err.message);
71
71
  process.exit(1);
@@ -73,6 +73,5 @@ try {
73
73
 
74
74
 
75
75
 
76
-
77
76
  //const { execSync } = require("child_process");
78
77
  //execSync("bash install.sh", { stdio: "inherit" });
package/package.json CHANGED
@@ -1,33 +1,75 @@
1
1
  {
2
2
 
3
3
  "name": "setup-kapelu",
4
- "version": "3.0.0",
4
+
5
+ "version": "3.0.1",
6
+
5
7
  "description": "Script post-install de Ubuntu",
8
+
6
9
  "type": "commonjs",
10
+
7
11
  "bin": {
8
- "kapelu": "index.js"
12
+
13
+
14
+ "kapelu": "index.js"
15
+
9
16
  },
17
+
10
18
  "repository": {
11
- "type": "git",
12
- "url": "git+https://github.com/Kapelu/kape-setup.git"
19
+
20
+
21
+ "type": "git",
22
+
23
+
24
+ "url": "git+https://github.com/Kapelu/kape-setup.git"
25
+
13
26
  },
27
+
14
28
  "keywords": [
15
- "ubuntu",
16
- "setup",
17
- "post-install",
18
- "cli",
19
- "script"
29
+
30
+
31
+ "ubuntu",
32
+
33
+
34
+ "setup",
35
+
36
+
37
+ "post-install",
38
+
39
+
40
+ "cli",
41
+
42
+
43
+ "script"
44
+
20
45
  ],
46
+
21
47
  "author": "Daniel Calderon",
48
+
22
49
  "license": "ISC",
50
+
23
51
  "bugs": {
24
- "url": "https://github.com/Kapelu/kape-setup/issues"
52
+
53
+
54
+ "url": "https://github.com/Kapelu/kape-setup/issues"
55
+
25
56
  },
57
+
26
58
  "homepage": "https://github.com/Kapelu/kape-setup#readme",
59
+
27
60
  "files": [
28
- "cli.js",
29
- "install.sh",
30
- "script/",
31
- "config/"
61
+
62
+
63
+ "cli.js",
64
+
65
+
66
+ "install.sh",
67
+
68
+
69
+ "script/",
70
+
71
+
72
+ "config/"
73
+
32
74
  ]
33
- }
75
+ }