mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-18 19:21:39 +03:00
10 lines
239 B
Bash
10 lines
239 B
Bash
|
#!/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
|