mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
9a3be156a7
Note, that if you pass both: --with-spidermonkey \ --with-quickjs you'll get compilation error
10 lines
120 B
Bash
Executable File
10 lines
120 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd "$MESON_SOURCE_ROOT"
|
|
|
|
for line in $(git diff-index HEAD 2>/dev/null)
|
|
do
|
|
echo '-dirty'
|
|
exit 0
|
|
done
|