From 8670c29131e056b7b2602acb81129bf699339866 Mon Sep 17 00:00:00 2001 From: Ben Jaffe Date: Tue, 13 Sep 2016 10:14:56 -0700 Subject: [PATCH] update aftereffects-eval to have a longer timeout --- lib/aftereffects-eval.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/aftereffects-eval.js b/lib/aftereffects-eval.js index 74a8668..530ccfb 100644 --- a/lib/aftereffects-eval.js +++ b/lib/aftereffects-eval.js @@ -57,7 +57,9 @@ function evalInAfterEffects(fn, args){ var cliArgs = [] cliArgs.push("-e", 'on run argv') + cliArgs.push("-e", 'with timeout of 600 seconds') cliArgs.push("-e", 'tell application "' + evalInAfterEffects.getName() + '" to DoScript (item 1 of argv)') + cliArgs.push("-e", 'end timeout') cliArgs.push("-e", 'end run') cliArgs.push(script)