Skip to content

Commit

Permalink
Update HaxeInstallHelper.as
Browse files Browse the repository at this point in the history
Printing stdErr in any condition #114
  • Loading branch information
rat-moonshine authored Dec 12, 2023
1 parent b56e0b0 commit 1b6da74
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,9 @@ package actionScripts.utils
{
var output:IDataInput = customProcess.standardError;
var data:String = output.readUTFBytes(output.bytesAvailable).toLowerCase();

trace("stdError: "+ data);
if (data.toLowerCase().indexOf("cp: /usr/local/bin/lime: permission denied") == -1)
{
trace("stdError: "+ data);
startShell(false);
dispatchEvent(new GeneralEvent(EVENT_INSTALL_ERROR, data));
}
Expand Down

0 comments on commit 1b6da74

Please sign in to comment.