浏览代码

Release Scripts

Added a script for polling Maven Central to notify when release is
uploaded.
Josh Cummings 6 年之前
父节点
当前提交
f3a90df1ef
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      scripts/release/wait-for-done

+ 4 - 0
scripts/release/wait-for-done

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