Skip to content

Commit

Permalink
improve quick sanity check
Browse files Browse the repository at this point in the history
  • Loading branch information
CAFxX committed May 10, 2023
1 parent afc6f71 commit 0e6e2c4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Expand Up @@ -35,10 +35,11 @@ At runtime it is possible to override which variant is used by specifying in the
## Quick sanity check

```
echo stage0 && go build &&\
echo stage1 && ./mgo -o vmgo && sha1sum vmgo &&\
echo stage2 && ./vmgo -o vmgo2 && sha1sum vmgo2 &&\
echo stage3 && ./vmgo2 -o vmgo3 && sha1sum vmgo3
rm -f *mgo* && \
echo stage0 && go build && \
echo stage1 && ./mgo -o mgo1 && sha1sum mgo1 && \
echo stage2 && ./mgo1 -o mgo2 && sha1sum mgo2 && \
echo stage3 && ./mgo2 -o mgo3 && sha1sum mgo3
```

This command should succeed and produce three identical hashes.
Expand Down

0 comments on commit 0e6e2c4

Please sign in to comment.