commit b5f376b8e96fb99d8458d8046b950618cdc36c05 from: Omar Polo date: Sun Jul 14 21:48:25 2024 UTC regress: run gotadmin pack/cleanup -r instead of cd'ing This way core files will be left in the current directory instead that in the test one that is going to be immediately removed. commit - df9b8d556c1e74a55dc19bb0a6e6375336e6e27f commit + b5f376b8e96fb99d8458d8046b950618cdc36c05 blob - 049027ad6c75376ea3889f4c9d676de6c9036ec2 blob + 85e444dd0708b8ba9b0eb85bc3715cc8d97d2743 --- regress/cmdline/common.sh +++ regress/cmdline/common.sh @@ -64,8 +64,8 @@ maybe_pack_repo() arg="-D" fi - (cd $repo && gotadmin pack -a $arg > /dev/null) - (cd $repo && gotadmin cleanup -a -q) + gotadmin pack -r "$repo" -a $arg > /dev/null + gotadmin cleanup -r "$repo" -a -q fi }