Browse Source

Strip extra quotation from maven commandline arguments

Change-Id: I008d349726eb951089d5fd4883702773e5d683f8
tags/7.6.0.alpha3
Teemu Suo-Anttila 8 years ago
parent
commit
eb2e36bc31
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      scripts/BuildHelpers.py

+ 1
- 1
scripts/BuildHelpers.py View File

@@ -77,7 +77,7 @@ def mavenValidate(artifactId, mvnCmd = mavenCmd, logFile = sys.stdout, repoIds =
if hasattr(repoIds, "version") and repoIds.version is not None:
cmd.append("-Dvaadin.version=%s" % (repoIds.version))
if hasattr(repoIds, "maven") and repoIds.maven is not None:
cmd.extend(repoIds.maven.split(" "))
cmd.extend(repoIds.maven.strip('"').split(" "))
cmd.extend(["clean", "package", "validate"])
print("executing: %s" % (" ".join(cmd)))
subprocess.check_call(cmd, cwd=join(resultPath, artifactId), stdout=logFile)

Loading…
Cancel
Save