1
0
mirror of https://github.com/KSP-CKAN/CKAN-meta.git synced 2024-10-13 00:59:46 +00:00

Merge pull request #381 from pjf/372_better_jenkins

Jenkins: Display all installed mods and files at end of testing.
This commit is contained in:
Leon Wright
2015-04-22 09:07:36 +08:00

View File

@ -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(?<mod>\S+)/ and system("mono --debug ckan.exe show $+{mod}"); } exit 0;'