10 lines
208 B
Bash
Executable file
10 lines
208 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
PREVIOUS_DIR=$(pwd)
|
|
|
|
cd $DIR
|
|
|
|
echo "$(git ls-files src && git ls-files bin/data)" | entr -d ./rebuild.sh
|
|
|
|
cd $PREVIOUS_DIR
|