From 49b3e3291c93355792757f94af9774617ed3d7bf Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sun, 20 Oct 2019 19:04:25 +0200 Subject: added some build-support for rust --- build-support/extra/rust/watcher.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 build-support/extra/rust/watcher.sh (limited to 'build-support/extra/rust/watcher.sh') diff --git a/build-support/extra/rust/watcher.sh b/build-support/extra/rust/watcher.sh new file mode 100755 index 00000000..544c3712 --- /dev/null +++ b/build-support/extra/rust/watcher.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +term() { + echo "--> Got SIGTERM" + echo "--> killing inotifywait with PID $inotifywait" + kill -TERM "$inotifywait" +} + +srcdir="$1" + +trap term SIGTERM + +inotifywait -mr -e close_write --format %w%f $srcdir | while read -r FILE; do + case "$FILE" in + *consts.rs) + echo "--> patching $FILE" + sed -i '/pub type U1024/d;/pub type P1024/d' $FILE + echo "--> finished patching $FILE" + ;; + esac +done & +inotifywait=$(ps -ef | grep inotifywait | grep -v grep | tr -s ' ' | cut -d ' ' -f2) +echo "--> waiting for inotifywait $inotifywait" +wait "$inotifywait" +echo "--> watcher terminated" -- cgit v1.2.3-54-g00ecf