ethereum / fe

Emerging smart contract language for the Ethereum blockchain.
https://fe-lang.org
Other
1.6k stars 179 forks source link

Correct install instructions for compiling from source #950

Closed keyneom closed 10 months ago

keyneom commented 10 months ago

What was wrong?

Currently a debug build is produced and the following command attempts to run a release version of the code that has never been built.

How was it fixed?

Adds the -r flag to the cargo build command to ensure the following step that checks for a successful build runs correctly.

Also adds instructions to change directories into the Fe repository directory before attempting to build (following current instructions step-by-step would lead to failures).

To-Do