1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-18 11:11:34 +03:00
vimr/bin/watch_nvimserver_and_build.sh
2020-12-24 10:44:24 +01:00

10 lines
261 B
Bash
Executable File

#!/bin/bash
set -Eeuo pipefail
main() {
pushd "$(dirname "${BASH_SOURCE[0]}")/.." >/dev/null
find NvimServer/NvimServer/Sources NvimServer/NvimServerTypes | grep -E '(\.h$|\.c$)' | entr -c ./bin/build_nvimserver_for_local_dev.sh
popd >/dev/null
}
main