Skip to content

Commit c61cd00

Browse files
authored
Fix URL format for fetching spring-boot dependencies (#32032)
1 parent d19ba08 commit c61cd00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.blueprint/update-spring-boot/generator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default class UpdateSpringBootGenerator extends BaseApplicationGenerator
4343
},
4444
async download() {
4545
const response = await fetch(
46-
`${this.repository}org/springframework/boot/spring-boot-dependencies/${this.version}/spring-boot-dependencies-${this.version}.pom`,
46+
`${this.repository}/org/springframework/boot/spring-boot-dependencies/${this.version}/spring-boot-dependencies-${this.version}.pom`,
4747
);
4848

4949
if (!response.ok) throw new Error(`Unexpected response ${response.statusText}`);

0 commit comments

Comments
 (0)