Skip to content

Commit a24ec9d

Browse files
committed
Merge branch '2.2.x' into 2.3.x
2 parents ef09982 + 46629ef commit a24ec9d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spring-boot-project/spring-boot-cli/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,11 @@ def scoopManifestArtifact = artifacts.add("archives", file("${buildDir}/scoop/sp
167167
task homebrewFormula(type: org.springframework.boot.build.cli.HomebrewFormula) {
168168
dependsOn tar
169169
outputDir = file("${buildDir}/homebrew")
170-
template = file("src/main/homebrew/springboot.rb")
170+
template = file("src/main/homebrew/spring-boot.rb")
171171
archive = tar.archiveFile
172172
}
173173

174-
def homebrewFormulaArtifact = artifacts.add("archives", file("${buildDir}/homebrew/springboot.rb")) {
174+
def homebrewFormulaArtifact = artifacts.add("archives", file("${buildDir}/homebrew/spring-boot.rb")) {
175175
type "rb"
176176
classifier "homebrew"
177177
builtBy "homebrewFormula"

spring-boot-project/spring-boot-cli/src/main/homebrew/springboot.rb renamed to spring-boot-project/spring-boot-cli/src/main/homebrew/spring-boot.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require 'formula'
22

3-
class Springboot < Formula
3+
class SpringBoot < Formula
44
homepage 'https://spring.io/projects/spring-boot'
55
url 'https://repo.spring.io/${repo}/org/springframework/boot/spring-boot-cli/${project.version}/spring-boot-cli-${project.version}-bin.tar.gz'
66
version '${project.version}'

0 commit comments

Comments
 (0)