8 lines
339 B
Bash
Executable File
8 lines
339 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Local dev: put the content repo's files where the build expects them.
|
|
# Usage: ./scripts/link-content.sh [path-to-content-clone] (default ../ctao-content)
|
|
# Cross-platform implementation is shared with npm run content:sync.
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")/.."
|
|
node scripts/content.mjs "${1:-../ctao-content}"
|