From 5a33852b4343c9f4119de50f8cd54290e40d15ad Mon Sep 17 00:00:00 2001 From: Theofilos Manitaras Date: Mon, 2 Mar 2020 10:15:43 +0100 Subject: [PATCH] Include commit hash in version when running --- reframe/frontend/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reframe/frontend/cli.py b/reframe/frontend/cli.py index 93c14c3778..956f114e0c 100644 --- a/reframe/frontend/cli.py +++ b/reframe/frontend/cli.py @@ -442,7 +442,7 @@ def main(): # Print command line printer.info('Command line: %s' % ' '.join(sys.argv)) - printer.info('Reframe version: ' + reframe.VERSION) + printer.info('Reframe version: ' + os_ext.reframe_version()) printer.info('Launched by user: ' + (os_ext.osuser() or '')) printer.info('Launched on host: ' + socket.gethostname())