Skip to content

Commit

Permalink
fix: error builder incorrectly assigned
Browse files Browse the repository at this point in the history
  • Loading branch information
labbbirder committed Feb 18, 2024
1 parent d315186 commit 4757f87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Editor/ShellResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class ShellResult
internal ShellResult(string cmd)
{
Command = cmd;
outputBuilder =
outputBuilder = new();
errorBuilder = new();
m_Output =
m_Error = null;
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "com.bbbirder.shell",
"displayName": "shell",
"description": "run shell in unity editor",
"version": "0.1.4",
"version": "0.1.5",
"hideInEditor": false,
"scripts": {},
"author": "bbbirder <502100554@qq.com>",
Expand All @@ -15,4 +15,4 @@
"system",
"colorlog"
]
}
}

0 comments on commit 4757f87

Please sign in to comment.