1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

Do not abort if license is not set. Maybe someone wants to test non enterprise images.

This commit is contained in:
lamai93 2018-12-03 14:38:40 +01:00
parent c00392bdc9
commit f093a2c88b

View file

@ -1,8 +1,7 @@
#!/bin/sh
if [ -z $ENTERPRISELICENSE ]; then
echo "Please specify ENTERPRISELICENSE"
exit 1
exit 0
fi
LICENSE=$(echo "${ENTERPRISELICENSE}" | base64 )