Skip to content

Commit a33ed40

Browse files
committed
fix: remove --pretty flag from storage inspector
1 parent eb8863f commit a33ed40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/storage-inspector.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async function storageLayoutActiveFile(args) {
1414
let contractDir = await getContractRootDir(contractPathArray.join("/"));
1515

1616
cp.exec(
17-
`cd ${contractDir} && forge inspect --pretty ${contractName} storage`,
17+
`cd ${contractDir} && forge inspect ${contractName} storage`,
1818
(err, stdout, stderr) => {
1919
if (err) {
2020
vscode.window.showErrorMessage(
@@ -46,7 +46,7 @@ async function storageLayoutContextMenu(clickedFile, selectedFiles) {
4646
let contractDir = await getContractRootDir(contractPathArray.join("/"));
4747

4848
cp.exec(
49-
`cd ${contractDir} && forge inspect --pretty ${contractName} storage`,
49+
`cd ${contractDir} && forge inspect ${contractName} storage`,
5050
(err, stdout, stderr) => {
5151
if (err) {
5252
vscode.window.showErrorMessage(

0 commit comments

Comments
 (0)