fix: correct hardcoded folder paths to use underscores
- Fix transcript-extract.sh: `00 Inbox/Clippings` → `00_Inbox/Clippings/` - Fix firecrawl-batch.sh: `00 Inbox/Clippings` → `00_Inbox/Clippings/` - Add `-o|--output-dir` flag to firecrawl-batch.sh for custom paths - Fix update-attachment-links.js: `05 Attachments` → `05_Attachments` - Fix fix-renamed-links.js: `05 Attachments` → `05_Attachments` - Fix GEMINI_VISION_QUICK_START.md example paths - Update README.md with new flag documentation All folder paths now match actual repo structure (underscores not spaces). This prevents scripts from failing due to incorrect directory references. Fixes #9 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -2,16 +2,16 @@
|
||||
|
||||
# Transcript extraction script for YouTube videos
|
||||
# Usage: .scripts/transcript-extract.sh <youtube-url> [output-path]
|
||||
# Default output: 00 Inbox/Clippings/
|
||||
# Default output: 00_Inbox/Clippings/
|
||||
|
||||
set -e
|
||||
|
||||
URL="$1"
|
||||
OUTPUT_PATH="${2:-00 Inbox/Clippings}"
|
||||
OUTPUT_PATH="${2:-00_Inbox/Clippings/}"
|
||||
|
||||
if [ -z "$URL" ]; then
|
||||
echo "Usage: $0 <youtube-url> [output-path]"
|
||||
echo "Default output path: 00 Inbox/Clippings/"
|
||||
echo "Default output path: 00_Inbox/Clippings/"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user