Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
Fix doc update git command (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
shinfan authored May 12, 2017
1 parent ab7aa82 commit dbbb76a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,11 @@ task publishDocs {
doLast {
exec {
workingDir './tmp_gh-pages'
commandLine 'git', 'commit', '-a', '-m', '"Release docs for ' + project.version + '"'
commandLine 'git', 'add', '.'
}
exec {
workingDir './tmp_gh-pages'
commandLine 'git', 'commit', '-m', 'Release docs for ' + project.version
}
exec {
workingDir './tmp_gh-pages'
Expand Down

0 comments on commit dbbb76a

Please sign in to comment.