mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
10 lines
122 B
Bash
10 lines
122 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd "$MESON_SOURCE_ROOT"
|
||
|
|
||
|
for line in $(git diff-index HEAD 2>/dev/null)
|
||
|
do
|
||
|
echo '-dirty'
|
||
|
exit 0
|
||
|
done
|