mirror of
https://github.com/rkd77/elinks.git
synced 2024-10-07 04:53:37 -04: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
|