From e35ac7a513059894483b9ab5a58e69b22397560d Mon Sep 17 00:00:00 2001 From: Inho Choi Date: Sat, 28 Feb 2026 23:14:08 +0900 Subject: [PATCH] Resolved by fixing run_processing.sh to stop depending on execute-bit metadata for the PeasyCam installer. --- viewer/scripts/run_processing.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/viewer/scripts/run_processing.sh b/viewer/scripts/run_processing.sh index ac787a3..d72d641 100644 --- a/viewer/scripts/run_processing.sh +++ b/viewer/scripts/run_processing.sh @@ -35,7 +35,7 @@ if [[ ! -d "$sketch_dir" ]]; then exit 1 fi -if [[ ! -x "$peasycam_bootstrap" ]]; then +if [[ ! -f "$peasycam_bootstrap" ]]; then echo "PeasyCam bootstrap script not found: $peasycam_bootstrap" >&2 exit 1 fi @@ -180,7 +180,7 @@ if [[ "$record_mode" == "loop" || "$record_mode" == "full" ]]; then mkdir -p "$frames_dir" fi -"$peasycam_bootstrap" +bash "$peasycam_bootstrap" mkdir -p "$jvm_error_dir" jvm_error_file_flag="-XX:ErrorFile=$jvm_error_dir/hs_err_pid%p.log"