Skip to content

Commit 7992c3e

Browse files
author
Nicolai Parlog
committed
Rename Gradle tasks related to Git repo setup
1 parent c393131 commit 7992c3e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,25 @@ configure(rootProject) {
1212

1313
}
1414

15-
task setupGitOnTravis(type: Exec) {
16-
commandLine './git-travis-setup.sh'
15+
task setupGitRepoOnTravis(type: Exec) {
16+
commandLine './git-repo-travis-setup.sh'
1717
}
1818

19-
task setupGit(type: Exec) {
20-
commandLine './git-setup.sh'
19+
task setupGitRepo(type: Exec) {
20+
commandLine './git-repo-setup.sh'
2121
if (project.findProperty('on-travis'))
22-
dependsOn setupGitOnTravis
22+
dependsOn setupGitRepoOnTravis
2323
}
2424

2525
task setupJekyll(type: Exec) {
26-
dependsOn setupGit
26+
dependsOn setupGitRepo
2727

2828
workingDir 'site-source'
2929
commandLine 'bundle install --quiet'.split(' ')
3030
}
3131

3232
task setup {
33-
dependsOn setupGit, setupJekyll
33+
dependsOn setupGitRepo, setupJekyll
3434
}
3535

3636
// -----
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)