From 0c4d02f932807639b1b0fd379b87067817304d82 Mon Sep 17 00:00:00 2001 From: ofTheo Date: Thu, 17 Oct 2019 15:37:14 -0700 Subject: [PATCH] added the -r flag for xattr quarantine closes #220 --- frontend/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app.js b/frontend/app.js index 4d46b976..edb2f304 100644 --- a/frontend/app.js +++ b/frontend/app.js @@ -612,7 +612,7 @@ function setup() { //var sys = require('sys') var exec = require('child_process').exec; function puts(error, stdout, stderr) { console.log(stdout + " " + stderr) } - exec("xattr -d com.apple.quarantine " + ofpath + "/projectGenerator-osx/projectGenerator.app", puts); + exec("xattr -r -d com.apple.quarantine " + ofpath + "/projectGenerator-osx/projectGenerator.app", puts); $("#projectPath").val(ofpath + "/apps/myApps").trigger('change'); }