Skip to content

Commit

Permalink
Fix missed default declaration for tarch
Browse files Browse the repository at this point in the history
  • Loading branch information
me-no-dev authored Feb 20, 2022
1 parent 63e8504 commit f52fbec
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/EspExceptionDecoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ private void createAndUpload(){
tarch = BaseNoGui.getBoardPreferences().get("build.tarch");
if(tarch == null || tarch.contentEquals("")){
editor.statusError("Arch Not Found for '"+BaseNoGui.getBoardPreferences().get("name")+"'. Defaulting to 'xtensa'");
tarch = "xtensa";
}
target = BaseNoGui.getBoardPreferences().get("build.target");
if(target == null || target.contentEquals("")){
Expand Down

0 comments on commit f52fbec

Please sign in to comment.