Skip to content

Commit 2484abd

Browse files
committed
added visualizer directory to release script
1 parent 6938c85 commit 2484abd

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

scripts/regenerate-release.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# Rebuild release artifacts in release/
3-
# Copies root-level .html and .js files, plus resources/
3+
# Copies root-level .html and .js files, plus resources/ and stix-visualization/
44

55
set -euo pipefail
66

@@ -71,6 +71,14 @@ else
7171
echo "Warning: resources/ directory not found in source"
7272
fi
7373

74+
if [ -d "$SRC/stix-visualization" ]; then
75+
echo "Copying stix-visualization directory..."
76+
rsync -a --delete "$SRC/stix-visualization/" "$RELEASE_DIR/stix-visualization/"
77+
echo " stix-visualization/"
78+
else
79+
echo "Warning: stix-visualization/ directory not found in source"
80+
fi
81+
7482
echo ""
7583
echo "=== Release Artifacts Ready ==="
7684
echo "Output: $RELEASE_DIR"

0 commit comments

Comments
 (0)