diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2015-07-07 17:56:42 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-07-08 06:53:30 +0000 |
commit | eb2e36bc31cbc776a5fb11096958d5323db553cf (patch) | |
tree | 9823af5d8806ab2b3f0fbb3856443913731cd606 /scripts | |
parent | 3212a92203306bbc5d59b08221a8ee81d86a3187 (diff) | |
download | vaadin-framework-eb2e36bc31cbc776a5fb11096958d5323db553cf.tar.gz vaadin-framework-eb2e36bc31cbc776a5fb11096958d5323db553cf.zip |
Strip extra quotation from maven commandline arguments
Change-Id: I008d349726eb951089d5fd4883702773e5d683f8
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/BuildHelpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/BuildHelpers.py b/scripts/BuildHelpers.py index f2872f66f9..7068168052 100644 --- a/scripts/BuildHelpers.py +++ b/scripts/BuildHelpers.py @@ -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) |