1 Star 0 Fork 0

tianjing/tabnine-intellij

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
verify-plugin-id.sh 525 Bytes
一键复制 编辑 原始数据 按行查看 历史
#! /bin/bash
set -e
ID_STR=$(cat Tabnine/src/main/resources/META-INF/plugin.xml | grep "<id>.*</id>" | xargs)
EXPECTED_ID="<id>com.tabnine.TabNine</id>"
if [ "$ID_STR" != "$EXPECTED_ID" ]; then
echo "Check failed: '$ID_STR' is not '$EXPECTED_ID'"
exit 1
fi
ID_STR=$(cat TabnineSelfHosted/src/main/resources/META-INF/plugin.xml | grep "<id>.*</id>" | xargs)
EXPECTED_ID="<id>com.tabnine.TabNine-Enterprise</id>"
if [ "$ID_STR" != "$EXPECTED_ID" ]; then
echo "Check failed: '$ID_STR' is not '$EXPECTED_ID'"
exit 1
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tianjinggg/tabnine-intellij.git
git@gitee.com:tianjinggg/tabnine-intellij.git
tianjinggg
tabnine-intellij
tabnine-intellij
master

搜索帮助