Skip to content

Commit 4dc7a9c

Browse files
fix: updated the passport json file name
1 parent 905631c commit 4dc7a9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/scripts/process-passport-tutorials.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ else
5555
fi
5656

5757
# Copy the generated JSON file
58-
JSON_FILE="./_parsed/passport-examples.json"
58+
JSON_FILE="./_parsed/passport-features.json"
5959
if [ -f "${JSON_FILE}" ]; then
6060
# Create directory for JSON file if it doesn't exist
6161
JSON_DIR="${DOCS_REPO_DIR}/docs/main/build/unity/usage-guides/passport"
6262
mkdir -p "${JSON_DIR}"
6363

6464
# Copy JSON file
65-
cp "${JSON_FILE}" "${JSON_DIR}/passport-features.json"
66-
echo "Copied ${JSON_FILE} to ${JSON_DIR}/passport-features.json"
65+
cp "${JSON_FILE}" "${JSON_DIR}/passport-examples.json"
66+
echo "Copied ${JSON_FILE} to ${JSON_DIR}/passport-examples.json"
6767
else
6868
echo "Warning: No passport-features.json found at ${JSON_FILE}"
6969
fi

0 commit comments

Comments
 (0)