Skip to content

Commit

Permalink
added the -r flag for xattr quarantine closes #220
Browse files Browse the repository at this point in the history
  • Loading branch information
ofTheo committed Oct 17, 2019
1 parent fe3a2b8 commit 0c4d02f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');

}
Expand Down

0 comments on commit 0c4d02f

Please sign in to comment.