index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2019-11-16 20:37:33 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2019-11-16 20:37:33 +0100 |
commit | ae1780d9136d30b46f8aa077e3234b0829fd99ae (patch) | |
tree | a603a95fbe3092909f0c6e3933b6356bd810c750 /build-support/disabled/rust/watcher.sh | |
parent | a88d4f51d2c59f450477509717d3149a37872569 (diff) |
-rwxr-xr-x | build-support/disabled/rust/watcher.sh | 25 |
diff --git a/build-support/disabled/rust/watcher.sh b/build-support/disabled/rust/watcher.sh new file mode 100755 index 00000000..544c3712 --- /dev/null +++ b/build-support/disabled/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" |