From 154af9e41e43f48b58a3f2caf775b311f99a8354 Mon Sep 17 00:00:00 2001 From: Paul Fenwick Date: Tue, 21 Apr 2015 20:31:39 +1000 Subject: [PATCH] Jenkins: Display all installed mods and files at end of testing. Closes #372. --- build.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build.sh b/build.sh index 4568a495e7..ba2c18eca6 100644 --- a/build.sh +++ b/build.sh @@ -32,3 +32,10 @@ for f in ${COMMIT_CHANGES} do mono --debug ckan.exe install -c $f --headless done + +# Show all installed mods. + +echo "Installed mods:" +mono --debug ckan.exe list --porcelain + +perl -e'@installed = `mono --debug ckan.exe list --porcelain`; foreach (@installed) { /^\S\s(?\S+)/ and system("mono --debug ckan.exe show $+{mod}"); } exit 0;'