mirror of
https://gh.wpcy.net/https://github.com/julxxy/chinaport-data-signature.git
synced 2026-05-31 00:04:01 +08:00
14 lines
377 B
Bash
Executable file
14 lines
377 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source ~/.zshrc
|
|
if command -v sptn >/dev/null 2>&1; then
|
|
echo "检测到 sptn 命令,正在执行..."
|
|
sptn
|
|
else
|
|
echo "未检测到 sptn 命令,跳过执行"
|
|
fi
|
|
|
|
SETTINGS="/Users/$USER/Development/program/apache-maven/conf/settings-maven-central.xml"
|
|
MODULE="chinaport-data-signature-data-model"
|
|
|
|
clear && mvn deploy -pl :$MODULE -am --settings $SETTINGS
|