mirror of
https://gitee.com/dgiiot/dgiot.git
synced 2024-11-30 19:28:09 +08:00
13 lines
232 B
Bash
Executable File
13 lines
232 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
url="$2"
|
|
|
|
if [ -f 'EMQX_ENTERPRISE' ]; then
|
|
if [[ "$url" != *emqx-enterprise* ]]; then
|
|
echo "$(tput setaf 1)error: enterprise_code_to_non_enterprise_repo"
|
|
exit 1
|
|
fi
|
|
fi
|