ci: fix build.sh logging
This commit is contained in:
parent
d73a7945ad
commit
6a7fce8510
1 changed files with 4 additions and 4 deletions
8
build.sh
8
build.sh
|
@ -32,22 +32,22 @@ if [[ -z "${MAVEN_DEPLOY_USER}" ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "${MAVEN_DEPLOY_PASSWORD}" ]]; then
|
if [[ -z "${MAVEN_DEPLOY_PASSWORD}" ]]; then
|
||||||
echo "MAVEN_DEPLOY_USER missing!"
|
echo "MAVEN_DEPLOY_PASSWORD missing!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "${IJ_PUBLISH_TOKEN}" ]]; then
|
if [[ -z "${IJ_PUBLISH_TOKEN}" ]]; then
|
||||||
echo "MAVEN_DEPLOY_USER missing!"
|
echo "IJ_PUBLISH_TOKEN missing!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f secrets/chain.crt ]; then
|
if [ ! -f secrets/chain.crt ]; then
|
||||||
echo "Certificate chain does not exist!"
|
echo "secrets/chain.crt missing!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f secrets/private.pem ]; then
|
if [ ! -f secrets/private.pem ]; then
|
||||||
echo "Plugin signing key does not exist!"
|
echo "secrets/private.pem missing!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue