linux-tutorial/codes/deploy/tool/springboot/install-springboot.sh
2018-02-09 14:28:04 +08:00

14 lines
196 B
Bash

#!/bin/bash -l
echo -e "\n>>>>>>>>> install springboot"
sdk version
execode=$?
if [ "${execode}" != "0" ]; then
echo "请先安装 sdkman"
exit 1
fi
sdk install springboot
spring --version