forked from lix-project/lix
Drop dependency on ‘expr’
http://hydra.nixos.org/build/8715639 Not sure why this causes a failure now.
This commit is contained in:
parent
80b691316c
commit
20d0598928
|
@ -7,7 +7,7 @@ while ! ln -s x $shared.lock 2> /dev/null; do
|
||||||
done
|
done
|
||||||
test -f $shared.cur || echo 0 > $shared.cur
|
test -f $shared.cur || echo 0 > $shared.cur
|
||||||
test -f $shared.max || echo 0 > $shared.max
|
test -f $shared.max || echo 0 > $shared.max
|
||||||
new=$(expr $(cat $shared.cur) + 1)
|
new=$(($(cat $shared.cur) + 1))
|
||||||
if test $new -gt $(cat $shared.max); then
|
if test $new -gt $(cat $shared.max); then
|
||||||
echo $new > $shared.max
|
echo $new > $shared.max
|
||||||
fi
|
fi
|
||||||
|
@ -25,5 +25,5 @@ while ! ln -s x $shared.lock 2> /dev/null; do
|
||||||
sleep 1
|
sleep 1
|
||||||
done
|
done
|
||||||
test -f $shared.cur || echo 0 > $shared.cur
|
test -f $shared.cur || echo 0 > $shared.cur
|
||||||
echo $(expr $(cat $shared.cur) - 1) > $shared.cur
|
echo $(($(cat $shared.cur) - 1)) > $shared.cur
|
||||||
rm $shared.lock
|
rm $shared.lock
|
||||||
|
|
Loading…
Reference in a new issue