We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ed146c commit 1683e1dCopy full SHA for 1683e1d
1 file changed
meson.build
@@ -123,8 +123,11 @@ version_tag = get_option('version-tag')
123
if version_tag != ''
124
conf.set('GIT_VERSION', '"@0@"'.format(version_tag))
125
else
126
+ # Find the path to bash and use it so we don't pick up the WSL bash in Windows.
127
+ bash_prog = find_program('bash', required: true)
128
r = run_command(
- 'scripts/meson-vcs-tag.sh',
129
+ bash_prog,
130
+ files('scripts/meson-vcs-tag.sh'),
131
meson.current_source_dir(),
132
meson.project_version(),
133
check: true,
0 commit comments