pinokiod 3.10.14 → 3.11.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.
- package/kernel/plugin.js +2 -1
- package/kernel/prototype.js +1 -1
- package/kernel/router/index.js +2 -1
- package/package.json +1 -1
package/kernel/plugin.js
CHANGED
|
@@ -11,7 +11,8 @@ class Plugin {
|
|
|
11
11
|
let exists = await this.kernel.exists("plugin")
|
|
12
12
|
if (!exists) {
|
|
13
13
|
await this.kernel.exec({
|
|
14
|
-
message: "git clone https://github.com/peanutcocktail/plugin",
|
|
14
|
+
//message: "git clone https://github.com/peanutcocktail/plugin",
|
|
15
|
+
message: "git clone https://github.com/pinokiocomputer/plugin",
|
|
15
16
|
path: this.kernel.homedir
|
|
16
17
|
}, (e) => {
|
|
17
18
|
process.stdout.write(e.raw)
|
package/kernel/prototype.js
CHANGED
|
@@ -18,7 +18,7 @@ class Proto {
|
|
|
18
18
|
await fs.promises.mkdir(this.kernel.path("prototype"), { recursive: true }).catch((e) => { })
|
|
19
19
|
await this.kernel.exec({
|
|
20
20
|
//message: "git clone https://github.com/peanutcocktail/prototype system",
|
|
21
|
-
message: "git clone https://github.com/
|
|
21
|
+
message: "git clone https://github.com/pinokiocomputer/prototype system",
|
|
22
22
|
path: this.kernel.path("prototype")
|
|
23
23
|
}, (e) => {
|
|
24
24
|
process.stdout.write(e.raw)
|
package/kernel/router/index.js
CHANGED
|
@@ -39,7 +39,8 @@ class Router {
|
|
|
39
39
|
console.log("network doesn't exist. cloning...")
|
|
40
40
|
await fs.promises.mkdir(this.kernel.path("network"), { recursive: true }).catch((e) => { })
|
|
41
41
|
await this.kernel.exec({
|
|
42
|
-
message: "git clone https://github.com/peanutcocktail/network system",
|
|
42
|
+
//message: "git clone https://github.com/peanutcocktail/network system",
|
|
43
|
+
message: "git clone https://github.com/pinokiocomputer/network system",
|
|
43
44
|
path: this.kernel.path("network")
|
|
44
45
|
}, (e) => {
|
|
45
46
|
process.stdout.write(e.raw)
|