mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
extension-tool: Always print extension location after its creation
The extension location was only printed, if there was no handler for the newly created extension. This is confusing for new extension developers. So always print the extension location. Fixes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2515. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1856>
This commit is contained in:
parent
e9119c625d
commit
f8cd01c6dc
1 changed files with 5 additions and 5 deletions
|
|
@ -217,13 +217,13 @@ launch_extension_source (GFile *dir, GError **error)
|
|||
|
||||
main_source = g_file_get_child (dir, "extension.js");
|
||||
handler = g_file_query_default_handler (main_source, NULL, NULL);
|
||||
|
||||
/* Translators: a file path to an extension directory */
|
||||
g_print (_("The new extension was successfully created in %s.\n"),
|
||||
g_file_peek_path (dir));
|
||||
|
||||
if (handler == NULL)
|
||||
{
|
||||
/* Translators: a file path to an extension directory */
|
||||
g_print (_("The new extension was successfully created in %s.\n"),
|
||||
g_file_peek_path (dir));
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
l.data = main_source;
|
||||
l.next = l.prev = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue