diff options
author | Branden Timm <[email protected]> | 2020-07-08 10:37:43 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2020-07-08 17:37:43 +0200 |
commit | 49df129ccd7aa4b8b6f2bbc6d61db7bb03f5f2eb (patch) | |
tree | 5cf1ea413f65e853f748b5e379361ba70b5a5f75 /BUILDING.md | |
parent | 3088dcadece0b27e8c1b274c509585775103f698 (diff) | |
download | tinygo-49df129ccd7aa4b8b6f2bbc6d61db7bb03f5f2eb.tar.gz tinygo-49df129ccd7aa4b8b6f2bbc6d61db7bb03f5f2eb.zip |
docs: add submodule update step prior to 'make release' (#1213)
* docs: add submodule update step prior to 'make release'
Diffstat (limited to 'BUILDING.md')
-rw-r--r-- | BUILDING.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/BUILDING.md b/BUILDING.md index e031a3020..1a7b65588 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -92,6 +92,10 @@ Now that we have a working static build, it's time to make a release tarball: make release +If you did not clone the repository with the `--recursive` option, you will get errors until you initialize the project submodules: + + git submodule update --init + The release tarball is stored in build/release.tar.gz, and can be extracted with the following command (for example in ~/lib): |