summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhe Sun <31067185+ZheSun88@users.noreply.github.com>2019-09-11 15:28:01 +0300
committerGitHub <noreply@github.com>2019-09-11 15:28:01 +0300
commit767e920edda2b79b7158762a85a8d23f91cb0193 (patch)
tree1d27b6045cb99f0b88393a76397da55580950266
parent5cce36027719a51968d8add3ae3439eceed8e4c6 (diff)
downloadvaadin-framework-767e920edda2b79b7158762a85a8d23f91cb0193.tar.gz
vaadin-framework-767e920edda2b79b7158762a85a8d23f91cb0193.zip
Print the errors (#11717)
-rw-r--r--scripts/GenerateBuildTestAndStagingReport.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/GenerateBuildTestAndStagingReport.py b/scripts/GenerateBuildTestAndStagingReport.py
index fb8874543e..57be70f8b3 100644
--- a/scripts/GenerateBuildTestAndStagingReport.py
+++ b/scripts/GenerateBuildTestAndStagingReport.py
@@ -96,6 +96,9 @@ def getAllowedArtifactPaths(allowedArtifacts):
def checkStagingContents(url, allowedArtifacts):
dirs = dirTree(url)
allowedDirs = getAllowedArtifactPaths(allowedArtifacts)
+ print(dirs)
+ print("~~~~~~~~~~~~~")
+ print(allowedDirs)
return set(dirs) == set(allowedDirs)
def getStagingContentsHtml(repoUrl, allowedArtifacts):