sbase

suckless unix tools
git clone git://git.suckless.org/sbase
Log | Files | Refs | README | LICENSE

commit c15aa18ff3958f4f72137dc8139744c5f028e83f
parent f64db1fa07393ef80a489e49ab926712795ac716
Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
Date:   Thu, 20 Nov 2025 15:01:30 +0100

tests: Use tmp. prefix in 0002-printf

The clear rule of the Makefile only knows about files
that begin with tmp, and having files with the prefix
exp can produce dirty workcopies even after running
make clean.

Diffstat:
Mtests/0002-printf.sh | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/0002-printf.sh b/tests/0002-printf.sh @@ -2,10 +2,10 @@ set -e -exp1=exp1.$$ -exp2=exp2.$$ -res1=res1.$$ -res2=res2.$$ +exp1=tmp1.$$ +exp2=tmp2.$$ +res1=tmp3.$$ +res2=tmp4.$$ cleanup() {