Skip to content

Commit

Permalink
Set check to true in run_command
Browse files Browse the repository at this point in the history
  • Loading branch information
rffontenelle authored Aug 30, 2024
1 parent 9cfd3eb commit ceeaa0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if get_option('is_devel')
app_id_suffix = '-Devel'

find_program('git', required: true)
vcs_tag = run_command('git', 'rev-parse', '--short', 'HEAD').stdout().strip()
vcs_tag = run_command('git', 'rev-parse', '--short', 'HEAD', check: true).stdout().strip()
version_suffix = '-dev.@0@'.format (vcs_tag)
endif

Expand Down

0 comments on commit ceeaa0a

Please sign in to comment.