79f59b667b
The welcome text uses the OSC 8 [1] escape sequence to add a hyperlink to the Silverblue documentation [2]. Silence a SC1003 [3] because the intention is to print the 'ESC \' string terminator (or ST), and not escape a single quote. [1] https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda [2] https://docs.fedoraproject.org/en-US/fedora-silverblue/toolbox/ [3] https://github.com/koalaman/shellcheck/wiki/SC1003 https://github.com/debarshiray/toolbox/pull/127
10 lines
197 B
Meson
10 lines
197 B
Meson
toolbox_sh = files('toolbox.sh')
|
|
|
|
if shellcheck.found()
|
|
test('shellcheck profile.d', shellcheck, args: ['--shell=sh', toolbox_sh])
|
|
endif
|
|
|
|
install_data(
|
|
toolbox_sh,
|
|
install_dir: profiledir,
|
|
)
|