mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
5f87bdbcb2
Not finished yet, but I added to motivate myself and others. The goal is to get a few seconds faster builds. autotools still will be available.
10 lines
122 B
Bash
Executable File
10 lines
122 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$MESON_SOURCE_ROOT"
|
|
|
|
for line in $(git diff-index HEAD 2>/dev/null)
|
|
do
|
|
echo '-dirty'
|
|
exit 0
|
|
done
|