1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 03:25:03 +03:00

Adapt scripts

This commit is contained in:
Tae Won Ha 2020-11-15 16:53:44 +01:00
parent 4287f7e832
commit 3d42944741
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
3 changed files with 7 additions and 10 deletions

@ -1 +1 @@
Subproject commit 0e4cd218d22caccc8545c23431bd35e4a3ef45d8
Subproject commit d6c47da2257b9b562e6f9cfd39f35d90d511c44c

View File

@ -14,7 +14,8 @@ build_for_local_dev() {
local -r nvimserver_path="./NvimServer"
pushd ${nvimserver_path} >/dev/null
if ${clean} ; then
if [[ ${clean} == true ]]; then
local -r -x clean_deps=false
./NvimServer/bin/clean_all.sh
fi

View File

@ -23,17 +23,13 @@ main () {
echo "### Xcodebuilding"
rm -rf ${build_path}
if [[ "${code_sign}" == true ]]; then
xcodebuild -configuration Release -derivedDataPath ./build \
-workspace VimR.xcworkspace -scheme VimR \
clean build
xcodebuild -configuration Release -derivedDataPath ${build_path} \
-workspace VimR.xcworkspace -scheme VimR \
clean build
if [[ "${code_sign}" == true ]]; then
local -r -x vimr_app_path="${build_path}/Build/Products/Release/VimR.app"
./bin/sign_vimr.sh
else
xcodebuild -configuration Release -derivedDataPath ${build_path} \
-scheme VimR -workspace VimR.xcworkspace \
clean build
fi
echo "### Built VimR target"