Skip to content
Snippets Groups Projects
Commit 2c9473e4 authored by Simon McVittie's avatar Simon McVittie
Browse files

wrap: Log the modified environment in which we will run bubblewrap

parent df449bf5
No related branches found
No related tags found
No related merge requests found
......@@ -2043,6 +2043,16 @@ main (int argc,
quoted = g_shell_quote (g_ptr_array_index (bwrap->argv, i));
g_message ("\t%s", quoted);
}
g_message ("%s environment:", bwrap_executable);
for (i = 0; bwrap->envp != NULL && bwrap->envp[i] != NULL; i++)
{
g_autofree gchar *quoted = NULL;
quoted = g_shell_quote (bwrap->envp[i]);
g_message ("\t%s", quoted);
}
}
/* flatpak_bwrap_finish did this */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment