1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-24 06:12:45 +03:00

Abort build release when NvimServer is not clean

This commit is contained in:
Tae Won Ha 2022-11-03 17:05:33 +01:00
parent c5a56250d4
commit 0ac4aca507
2 changed files with 11 additions and 1 deletions

@ -1 +1 @@
Subproject commit 49d2cd91b910ea77b4a8131cb523016488d38611
Subproject commit 5eed447339d8a54215046fe75d0f3def471ef500

View File

@ -56,6 +56,16 @@ check_gh_release_present() {
build_release() {
echo "### Building release"
# Check whether NvimServer submodule is clean
git submodule update
pushd NvimServer >/dev/null
if [[ ! -z "$(git status --porcelain)" ]]; then
echo "NvimServer submodule not clean!"
exit 1
fi
popd >/dev/null
clean=true notarize=true use_carthage_cache=false ./bin/build_vimr.sh
pushd "${build_folder_path}" >/dev/null