Skip to content

Commit 0025005

Browse files
authored
Merge pull request #177 from SethTisue/unbundlings
remove unbundled modules
2 parents cf88460 + b127be0 commit 0025005

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

scripts/jobs/release/website/archives

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ echo "Expanding scala-library API docs for $version to api/$version (with subdir
2626
ssh "${sshCharaArgs[@]}" "cd $archivesDir && mkdir -p api/$version && tar -xvz --strip-component 2 -f scala-docs-$version.tgz -C api/$version && mv api/$version/scala-library/* api/$version/" # tar on jenkins does not support the -s option
2727

2828
echo "Expanding the Scaladoc for other bundled modules"
29-
modules="scala-parser-combinators scala-swing scala-xml"
30-
for m in $modules; do
29+
modules="scala-xml"
30+
for m in $modules; do
3131
ssh "${sshCharaArgs[@]}" "(set -x; cd $archivesDir && mkdir -p api/$version/$m && unzip \$(find api/$version/jars -name ${m}_'*javadoc.jar' -o -name ${m}-${version}-javadoc.jar) -d api/$version/$m;)"
3232
done
33-

0 commit comments

Comments
 (0)