7 lines
158 B
Bash
Executable File
7 lines
158 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd "$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd)"
|
|
set -eo pipefail
|
|
|
|
git ls-files | entr bash -c "./example.sh > live.html"
|