check for valid marc version
This commit is contained in:
parent
51b92f3ef9
commit
eac0217b78
|
@ -87,6 +87,10 @@ class Marc(Solver):
|
||||||
|
|
||||||
if len(release) == 0: release = self.version(rootRelation)
|
if len(release) == 0: release = self.version(rootRelation)
|
||||||
|
|
||||||
|
if release not in self.releases:
|
||||||
|
raise Exception("Unknown MSC.Marc Version %s"%release)
|
||||||
|
|
||||||
|
|
||||||
damaskEnv = damask.environment.Environment(rootRelation)
|
damaskEnv = damask.environment.Environment(rootRelation)
|
||||||
|
|
||||||
user = os.path.join(damaskEnv.relPath('code/'),'DAMASK_marc') # might be updated if special version is found (usually symlink)
|
user = os.path.join(damaskEnv.relPath('code/'),'DAMASK_marc') # might be updated if special version is found (usually symlink)
|
||||||
|
|
Loading…
Reference in New Issue