mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-04-30 01:29:07 -05:00
Question and answer icons work perfectly. Chapter-connection icon needs to be updated with proper design.
12 lines
288 B
Bash
Executable File
12 lines
288 B
Bash
Executable File
#!/bin/bash
|
|
# Copy assets to build directory for Quarto
|
|
|
|
echo "📁 Copying assets to build directory..."
|
|
|
|
# Create assets directory if it doesn't exist
|
|
mkdir -p ../build/html/assets
|
|
|
|
# Copy assets directory
|
|
cp -r ../assets/* ../build/html/assets/
|
|
|
|
echo "✅ Assets copied successfully!" |