Skip to content

Commit 76aa33b

Browse files
committed
Merge branch '2.3.x' into 2.4.x
2 parents 04616a0 + a24ec9d commit 76aa33b

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
@@ -168,11 +168,11 @@ def scoopManifestArtifact = artifacts.add("archives", file("${buildDir}/scoop/sp
168168
task homebrewFormula(type: org.springframework.boot.build.cli.HomebrewFormula) {
169169
dependsOn tar
170170
outputDir = file("${buildDir}/homebrew")
171-
template = file("src/main/homebrew/springboot.rb")
171+
template = file("src/main/homebrew/spring-boot.rb")
172172
archive = tar.archiveFile
173173
}
174174

175-
def homebrewFormulaArtifact = artifacts.add("archives", file("${buildDir}/homebrew/springboot.rb")) {
175+
def homebrewFormulaArtifact = artifacts.add("archives", file("${buildDir}/homebrew/spring-boot.rb")) {
176176
type "rb"
177177
classifier "homebrew"
178178
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)