Skip to content
This repository has been archived by the owner on Jan 18, 2021. It is now read-only.

Fixed problem with the release (again) #518

Merged
merged 1 commit into from
Oct 19, 2017
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
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void execute(ShipkitExecTask t) {
//Travis default clone is shallow which will prevent correct release notes generation for repos with lots of commits
t.setDescription("Ensures good chunk of recent commits is available for release notes automation.");
t.execCommand(ExecCommandFactory.execCommand("Getting more commits",
asList("git", "fetch", "--unshallow", "tags"), new Action<ExecResult>() {
asList("git", "fetch", "--unshallow", "--tags"), new Action<ExecResult>() {
@Override
public void execute(ExecResult result) {
if (result.getExitValue() != 0) {
Expand Down