This is an automated email from the ASF dual-hosted git repository.

gstein pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/steve.git

commit 6b3e44eb440ca8d59ac0c75c9909d2582c825db5
Author: Greg Stein <[email protected]>
AuthorDate: Tue Feb 3 00:42:44 2026 -0600

    simplify with -p to mkdir
---
 v3/tests/populate_v2_stv.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/v3/tests/populate_v2_stv.sh b/v3/tests/populate_v2_stv.sh
index 2dfebb4..278bee4 100755
--- a/v3/tests/populate_v2_stv.sh
+++ b/v3/tests/populate_v2_stv.sh
@@ -25,10 +25,10 @@ if test "$1" = ""; then echo "USAGE: $0 MEETINGS_DIR"; exit 
1; fi
 MEETINGS_DIR="$1"
 
 REFERENCE_DIR="v2-stv-ref"
-mkdir "$REFERENCE_DIR" || /bin/true
+mkdir -p "$REFERENCE_DIR"
 
 V3_DIR="v3-stv"
-mkdir "$V3_DIR" || /bin/true
+mkdir -p "$V3_DIR"
 
 THIS_FILE=`realpath $0`
 THIS_DIR=`dirname "$THIS_file"`

Reply via email to