gm-kilo 2.0.855 → 2.0.857
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/bin/plugkit.sha256 +6 -6
- package/bin/plugkit.version +1 -1
- package/bin/rtk.sha256 +2 -2
- package/gm-kilo.mjs +1 -1
- package/package.json +1 -1
package/bin/plugkit.sha256
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
2abc588f79892ff0613087e5e6dc048eacb000a8d2d5a23ca8f40469b5e5e89d plugkit-win32-x64.exe
|
|
2
|
+
0c444f66e7d8dda6b6a187189b62341031e7005cd891da0871cc93abd0bce378 plugkit-win32-arm64.exe
|
|
3
|
+
f11d311bb2b8b6291b585f93a5b54b73a239f7cb7f697c75e11077456ecaaf0e plugkit-darwin-x64
|
|
4
|
+
6270881b0036ab7128ff224af5bdd0a5167c446fbc963cd6cdd19ddf186d9a69 plugkit-darwin-arm64
|
|
5
|
+
2746e5e65f924b80bee4e1feb540cd31b97c4337107b00129c439fbd8988336c plugkit-linux-x64
|
|
6
|
+
955c977e72ab7432598c9c37c753afeb94ec57752e6bf393f504f58df1d97307 plugkit-linux-arm64
|
package/bin/plugkit.version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.286
|
package/bin/rtk.sha256
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
287c72bab4580d7cc6475bfed9def2255fe035a178ca74667d7fa72de314735a rtk-win32-x64.exe
|
|
2
|
+
4939ed80d29fad4ffca9704413287976ce518c4512fd1ca5983ffdffb159db25 rtk-win32-arm64.exe
|
|
3
3
|
e89fdf402c28796b510587a8b0fe046438b5b24d49533d1a2339a48aecae35e9 rtk-darwin-x64
|
|
4
4
|
2b203fd380f5782b5489eb016e34e3dbf848272a7fadf36b39bce6cfd9a3005c rtk-darwin-arm64
|
|
5
5
|
0da9950b859c7a2693aaf6c169f05f9b8965508ba1f23f1547e63d5fa988749e rtk-linux-x64
|
package/gm-kilo.mjs
CHANGED
|
@@ -205,7 +205,7 @@ export async function GmPlugin({ directory }) {
|
|
|
205
205
|
if (/^\s*git(?:\s|$)/.test(cmd)) return;
|
|
206
206
|
const m = cmd.match(/^exec(?::(\S+))?\n([\s\S]+)$/);
|
|
207
207
|
if (!m) {
|
|
208
|
-
output.args.command = "
|
|
208
|
+
output.args.command = "node -e \"process.stderr.write('Bash tool can only be used with exec syntax:\\n\\nexec[:lang]\\n<command>\\n\\nExamples:\\nexec\\nls -la\\n\\nexec:nodejs\\nconsole.log(hello)'); process.exit(1)\"";
|
|
209
209
|
return;
|
|
210
210
|
}
|
|
211
211
|
const rawLang = (m[1]||'').toLowerCase();
|