Skip to content

Commit 735dd7d

Browse files
committed
prepare-doc.sh: unquote the glob so that it expands
1 parent 4614e5f commit 735dd7d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

scripts/prepare-doc.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,9 @@ EOF
8787

8888
if [ "$PARAVIEW_DOC_UPLOAD" = "true" ]; then
8989
cd "${WORK_DIR}/paraview-docs/"
90-
ls
9190

9291
if [ "$UPDATE_LATEST" = "true" ]; then
93-
ls "$VERSION/"
94-
cp -r "$VERSION/*" latest/
92+
cp -r "$VERSION/"* latest/
9593
fi
9694

9795
git add "$VERSION"

0 commit comments

Comments
 (0)