Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 29 lines 999 B view raw
1diff --git a/src/extension.ts b/src/extension.ts 2index c3833e9..611e84c 100644 3--- a/src/extension.ts 4+++ b/src/extension.ts 5@@ -544,7 +544,7 @@ export class Ext extends Ecs.System<ExtEvent> { 6 return true 7 } 8 9- const ipc = utils.async_process_ipc(["gjs", path]) 10+ const ipc = utils.async_process_ipc([path]) 11 12 if (ipc) { 13 const generator = (stdout: any, res: any) => { 14diff --git a/src/panel_settings.ts b/src/panel_settings.ts 15index 5d02d33..1cd70d0 100644 16--- a/src/panel_settings.ts 17+++ b/src/panel_settings.ts 18@@ -348,7 +348,7 @@ function color_selector(ext: Ext, menu: any) { 19 color_selector_item.add_child(color_button); 20 color_button.connect('button-press-event', () => { 21 let path = Me.dir.get_path() + "/color_dialog/main.js"; 22- let resp = GLib.spawn_command_line_async(`gjs ${path}`); 23+ let resp = GLib.spawn_command_line_async(`${path}`); 24 if (!resp) { 25 26 return null; 27-- 282.37.3 29