Skip to content

Commit 5672f3c

Browse files
authored
Merge pull request #21 from mongodb-labs/bugfix-index-iteration
[Bugfix]: Correct index population on provision-atlas.sh
2 parents 6c10f1e + d84a1a1 commit 5672f3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/provision-atlas.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ DATABASE=$DATABASE \
4343

4444
# If a search index configuration can be found, create the index
4545
if [ -d "$TARGET_DIR/indexes" ]; then
46-
for file in "$TARGET_DIR/indexes/*.json"; do
46+
for file in $TARGET_DIR/indexes/*.json; do
4747
$atlas deployments search indexes create --file $file --deploymentName $DIR
4848
done
4949
fi

0 commit comments

Comments
 (0)