Skip to content

Commit 0317264

Browse files
committed
Use correct argument passing for libmesh scripts
1 parent 6716646 commit 0317264

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/configure_libmesh.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function configure_libmesh()
6969
--with-future-timpi-dir="${LIBMESH_DIR}" \
7070
INSTALL="${INSTALL_BINARY}" \
7171
"${EXTRA_ARGS[@]}" \
72-
$*
72+
"$@"
7373
local RETURN_CODE=$?
7474

7575
# Restore unbound variable checks

scripts/update_and_rebuild_libmesh.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ if [ -z "$go_fast" ]; then
167167
source $SCRIPT_DIR/configure_libmesh.sh
168168
SRC_DIR=${LIBMESH_SRC_DIR} configure_libmesh $DISABLE_TIMESTAMPS \
169169
$VTK_OPTIONS \
170-
$* | tee -a "$SCRIPT_DIR/$DIAGNOSTIC_LOG" || exit 1
170+
"$@" | tee -a "$SCRIPT_DIR/$DIAGNOSTIC_LOG" || exit 1
171171
else
172172
# The build directory must already exist: you can't do --fast for
173173
# an initial build.

0 commit comments

Comments
 (0)