Skip to content
This repository was archived by the owner on Feb 23, 2018. It is now read-only.

fix typo of last commit #127

Merged
merged 1 commit into from
Aug 8, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions publish-nightly
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@ EOM
}

# publish scaladoc nightlies
rsync -az build/scaladoc/ "$nightly_rsync_dest/$scaladocDir"
[[ -d build/scaladoc/ ]] && {
rsync -az build/scaladoc/ "$nightly_rsync_dest/$scaladocDir"
}

# push to the maven repository. in 2.11.x and above, we've already published during the main job
[[ -e dists/maven/latest/build.xml ]]; then
[[ -e dists/maven/latest/build.xml ]] && {
cd dists/maven/latest
ant deploy -Dsettings.file=$maven_settings_file
fi
Expand Down