Changed rm -rf commands to use absolute paths ($WORKTREE_PATH) instead of relative paths to prevent accidental deletion if symlinks behave unexpectedly. Also cleaned up duplicate WORKTREE_PATH definition. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
No EOL
1 KiB
Bash
Executable file
30 lines
No EOL
1 KiB
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
# Copy .env file
|
|
cp $CONDUCTOR_ROOT_PATH/.env .env
|
|
|
|
# Setup shared dependencies via symlinks to main repo
|
|
echo "Setting up shared node_modules and vendor directories..."
|
|
|
|
# Ensure main repo has the directories
|
|
mkdir -p "$CONDUCTOR_ROOT_PATH/node_modules"
|
|
mkdir -p "$CONDUCTOR_ROOT_PATH/vendor"
|
|
|
|
# Get current worktree path
|
|
WORKTREE_PATH=$(pwd)
|
|
|
|
# Remove existing directories if they exist and are not symlinks
|
|
[ -d "node_modules" ] && [ ! -L "node_modules" ] && rm -rf "$WORKTREE_PATH/node_modules"
|
|
[ -d "vendor" ] && [ ! -L "vendor" ] && rm -rf "$WORKTREE_PATH/vendor"
|
|
|
|
# Calculate relative path from worktree to main repo
|
|
RELATIVE_PATH=$(python3 -c "import os.path; print(os.path.relpath('$CONDUCTOR_ROOT_PATH', '$WORKTREE_PATH'))")
|
|
|
|
# Create symlinks to main repo's node_modules and vendor
|
|
ln -sf "$RELATIVE_PATH/node_modules" node_modules
|
|
ln -sf "$RELATIVE_PATH/vendor" vendor
|
|
|
|
echo "✓ Shared dependencies linked successfully"
|
|
echo " node_modules -> $RELATIVE_PATH/node_modules"
|
|
echo " vendor -> $RELATIVE_PATH/vendor" |