Skip to content

Commit

Permalink
Fix meson configuration where upgrading Builder to a new major versio…
Browse files Browse the repository at this point in the history
…n, resinstalling plugins failed.
  • Loading branch information
Gilles Coissac committed May 17, 2022
1 parent 4551537 commit da342ee
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 @@ -25,7 +25,7 @@ else
if ret.stdout() == ''
error('can not obtain gnome-builder version.')
endif
builder_version = ret.stdout().split().get(2)
builder_version = ret.stdout().split()[-1]
if builder_version.version_compare('<' + builder_required_version)
error('need at least version 3.38 of gnome-builder\ninstalled version=@0@'.format(builder_version))
else
Expand Down

0 comments on commit da342ee

Please sign in to comment.