File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -213,6 +213,7 @@ chmod +x "$CONTENTS/MacOS/vapourbox-worker"
213213# everything in MacOS/ to be signed Mach-O binaries)
214214cp " $PROJECT_ROOT /worker/templates/pipeline_template.vpy" " $CONTENTS /Resources/templates/"
215215cp " $PROJECT_ROOT /worker/templates/preview_template.vpy" " $CONTENTS /Resources/templates/"
216+ cp " $PROJECT_ROOT /worker/templates/pipe_source.py" " $CONTENTS /Resources/templates/"
216217
217218# Copy licenses
218219cp -r " $PROJECT_ROOT /licenses/" * " $CONTENTS /Resources/licenses/"
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ Copy-Item $WorkerExe "$PackageDir\"
100100# Copy VapourSynth script templates
101101Copy-Item (Join-Path $ProjectRoot " worker\templates\pipeline_template.vpy" ) " $PackageDir \templates\"
102102Copy-Item (Join-Path $ProjectRoot " worker\templates\preview_template.vpy" ) " $PackageDir \templates\"
103+ Copy-Item (Join-Path $ProjectRoot " worker\templates\pipe_source.py" ) " $PackageDir \templates\"
103104
104105# Copy licenses
105106Write-Host " Copying licenses..."
Original file line number Diff line number Diff line change @@ -84,9 +84,10 @@ cp -R "$DERIVED_APP" "$DEBUG_APP"
8484# Copy worker binary
8585cp " $WORKER_DIR /target/debug/vapourbox-worker" " $DEBUG_APP /Contents/MacOS/"
8686
87- # Copy templates
87+ # Copy templates (includes pipe_source.py used by VapourSynth scripts)
8888mkdir -p " $DEBUG_APP /Contents/MacOS/templates"
8989cp " $WORKER_DIR /templates/" * .vpy " $DEBUG_APP /Contents/MacOS/templates/"
90+ cp " $WORKER_DIR /templates/pipe_source.py" " $DEBUG_APP /Contents/MacOS/templates/"
9091
9192# Remove quarantine from deps if present
9293if xattr " $PROJECT_ROOT /deps/macos-arm64/ffmpeg/ffmpeg" 2> /dev/null | grep -q quarantine; then
You can’t perform that action at this time.
0 commit comments