[SCons] Remove <> from unknown git commit string
The shell was interpreting these as redirect operators during compilation
This commit is contained in:
parent
3fac5f2bc6
commit
c8305375ef
1 changed files with 1 additions and 1 deletions
|
|
@ -717,7 +717,7 @@ env['cantera_short_version'] = '.'.join(str(x) for x in ctversion.version[:2])
|
|||
try:
|
||||
env['git_commit'] = getCommandOutput('git', 'rev-parse', '--short', 'HEAD')
|
||||
except Exception:
|
||||
env['git_commit'] = '<unknown>'
|
||||
env['git_commit'] = 'unknown'
|
||||
|
||||
# Print values of all build options:
|
||||
print("Configuration variables read from 'cantera.conf' and command line:")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue