GNOME Bugzilla – Bug 641174
Run dialog reports all errors as "Command not found"
Last modified: 2012-06-21 17:09:20 UTC
commit 912a30c5664f18e416a17c031a26cb89123a05d5 Author: William Jon McCann <jmccann@redhat.com> Date: Thu Jan 27 15:26:58 2011 -0500 Clean up the presentation of errors in the run dialog Added the code: if (err.code == GLib.SpawnError.G_SPAWN_ERROR_NOENT) { err.message = _("Command not found"); } else { // the old stuff } But there's no support in gjs for err.code (bug 591480), and the error code is called GLib.SpawnError.NOENT, so this is just undefined == undefined. (Test by 'chmod a-x <some executable you want to run>')
Created attachment 180795 [details] [review] util: trySpawn throw error with correct message ( depend on https://bugzilla.gnome.org/show_bug.cgi?id=591480#c6 )
Reassigning to walters, since this is all about GJS changes in the end
Review of attachment 180795 [details] [review]: err.code still doesn't exist, so this is incorrect.
Review of attachment 180795 [details] [review]: gjs changes merged, re-reviewing. ::: js/misc/util.js @@ +83,3 @@ null, null); } catch (err) { + if (err.code == GLib.SpawnError.NOENT) { You need to check "err instanceof GLib.SpawnError" too Or just use err.matches(GLib.SpawnError, GLib.SpawnError.NOENT)
This is fixed now.