Skip to content

Commit

Permalink
Fix building source archives
Browse files Browse the repository at this point in the history
This process failed to include all the necessary files, making it
impossible to build Inko using the source archives.

Changelog: fixed
  • Loading branch information
yorickpeterse committed Sep 8, 2022
1 parent c454fd4 commit 82452f1
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Makefile
Expand Up @@ -69,17 +69,19 @@ ${TMP_DIR}:

${SOURCE_TAR}: ${TMP_DIR}
git archive --format tar HEAD \
.cargo \
CHANGELOG.md \
Cargo.lock \
Cargo.toml \
LICENSE \
Makefile \
ast \
bytecode \
compiler \
inko \
libstd/src \
vm \
.cargo \
Cargo.toml \
Cargo.lock \
CHANGELOG.md \
LICENSE \
Makefile \
types \
| gzip > "${@}"

release/source: ${SOURCE_TAR}
Expand Down

0 comments on commit 82452f1

Please sign in to comment.