linux-tutorial/codes/deploy/tool/springboot/install-springboot.sh

14 lines
196 B
Bash
Raw Normal View History

#!/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