Skip to content

Commit

Permalink
Changed command line arg order
Browse files Browse the repository at this point in the history
  • Loading branch information
yahgwai committed Jan 25, 2025
1 parent 3951217 commit 7b43d9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/storage/test.bash
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ for CONTRACTNAME in Bridge Inbox Outbox RollupCore RollupUserLogic RollupAdminLo
do
echo "Checking storage change of $CONTRACTNAME"
[ -f "$output_dir/$CONTRACTNAME" ] && mv "$output_dir/$CONTRACTNAME" "$output_dir/$CONTRACTNAME-old"
forge inspect "$CONTRACTNAME" --pretty storage > "$output_dir/$CONTRACTNAME"
forge inspect --pretty "$CONTRACTNAME" storage > "$output_dir/$CONTRACTNAME"
diff "$output_dir/$CONTRACTNAME-old" "$output_dir/$CONTRACTNAME"
if [[ $? != "0" ]]
then
Expand Down

0 comments on commit 7b43d9e

Please sign in to comment.