1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-18 19:21:39 +03:00
vimr/bin/watch_nvimserver_and_build.sh

10 lines
239 B
Bash
Raw Normal View History

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