Harcode the resulting version string to "2.10".
We will need to rework this since it is error prone to hard code a
specific version here. We either fix the uptstream or we find an elegant
way to find the tag of a commit for a shallow repository downstream.
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
if args.lttng_version == "master":
lttng_version_string = "master"
+ elif args.lttng_version == "canary":
+ lttng_version_string = "2.10"
else:
major, minor = parse_stable_version(args.lttng_version)
lttng_version_string = str(major) + "." + str(minor)