Files
spring-session/scripts/release/wait-for-done.sh
Josh Cummings 39b8681953 Add Release Scripts
- wait-for-done is a handy script for periodically checking
Maven for the release

- release-notes-sections is handy for working with Spring Boot
Changelog
2023-05-16 09:16:55 -06:00

5 lines
213 B
Bash
Executable File

#!/bin/bash
VERSION=$1
until http -h --check-status --ignore-stdin https://repo1.maven.org/maven2/org/springframework/session/spring-session-core/$VERSION/; do sleep 10; clear; done; spd-say "It is now uploaded"