Skip to content
This repository was archived by the owner on May 31, 2022. It is now read-only.

Commit 5ae7f14

Browse files
committed
Add release helper scripts
1 parent 194ea3e commit 5ae7f14

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

scripts/release/wait-for-done.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
3+
VERSION=$1
4+
until http -h --check-status --ignore-stdin https://repo1.maven.org/maven2/org/springframework/security/oauth/boot/spring-security-oauth2-autoconfigure/$VERSION/; do sleep 10; clear; done; spd-say "It is now uploaded"

scripts/update-dependencies.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
rm -f build/updates.txt
3+
./gradlew dependencyUpdate -Drevision=release
4+
find . -name report.txt | xargs cat > build/updates.txt
5+
echo "Updates...."
6+
cat build/updates.txt | fgrep ' ->' | sort | uniq

0 commit comments

Comments
 (0)