mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
When PATH contain spaces, which is a really bad idea anyway, the export will most likely set it to a value up to the first space. Use quoting to prevent that. Note, shellcheck does not complain about that, but try this: sh-5.1$ export foo=foo bar baz sh-5.1$ echo $foo foo sh-5.1$ export foo="foo bar baz" sh-5.1$ echo $foo foo bar baz sh-5.1$ Signed-off-by: Maciej Borzecki <maciej.zenon.borzecki@canonical.com>