Ignore M2 directory if empty

This commit is contained in:
2025-11-15 18:56:27 -05:00
parent 28a4f289da
commit c0d1959d5c

2
run.sh
View File

@@ -8,7 +8,7 @@ mkdir -p "$SCRIPT_DIR/build"
echo "Got versions $REV" echo "Got versions $REV"
if [ -z ${M2_DIRECTORY+x} ]; then if [ -z "$M2_DIRECTORY" ]; then
echo "m2 directory not specified, defaulting to $SCRIPT_DIR/m2" echo "m2 directory not specified, defaulting to $SCRIPT_DIR/m2"
M2_DIRECTORY="$SCRIPT_DIR/m2" M2_DIRECTORY="$SCRIPT_DIR/m2"