We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6938c85 commit 2484abdCopy full SHA for 2484abd
1 file changed
scripts/regenerate-release.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
# Rebuild release artifacts in release/
3
-# Copies root-level .html and .js files, plus resources/
+# Copies root-level .html and .js files, plus resources/ and stix-visualization/
4
5
set -euo pipefail
6
@@ -71,6 +71,14 @@ else
71
echo "Warning: resources/ directory not found in source"
72
fi
73
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
+
82
echo ""
83
echo "=== Release Artifacts Ready ==="
84
echo "Output: $RELEASE_DIR"
0 commit comments