-
-
Save schnittchen/aed058c72e8d85db2123c2addfb4ca03 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Touches changed files in order to make it work | |
# when filesystem changes are not properly detected | |
# by development mode code reloading. | |
# | |
# Usage: bin/touch_changed [<sleep every>] | |
EVERY=${1:-1} | |
RELOAD="/tmp/reload" | |
DIRS="web lib" | |
# Initial touch | |
touch $RELOAD | |
find_changed() { | |
find $DIRS -type f -newer $RELOAD | grep -E -v '\.sw.$' | |
} | |
while :; do | |
files=$(find_changed) | |
if [ "$files" != "" ]; then | |
echo "Changed: $files" | |
touch $RELOAD | |
touch -r $RELOAD $files | |
fi | |
sleep $EVERY | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment