1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-18 19:29:56 +00:00

Merge pull request #164 from AlbertoGP/master

Defuse tarbomb: wrap tar file contents in directory, fix #163
This commit is contained in:
Calvin Rose 2019-09-09 19:16:43 -04:00 committed by GitHub
commit b585d19519
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -255,7 +255,10 @@ build/janet-%.tar.gz: $(JANET_TARGET) \
src/include/janet.h src/conf/janetconf.h \
jpm.1 janet.1 LICENSE CONTRIBUTING.md $(JANET_LIBRARY) $(JANET_STATIC_LIBRARY) \
build/doc.html README.md build/janet.c
tar -czvf $@ $^
$(eval JANET_DIST_DIR = "janet-$(shell basename $*)")
mkdir -p build/$(JANET_DIST_DIR)
cp -r $^ build/$(JANET_DIST_DIR)/
cd build && tar -czvf ../$@ $(JANET_DIST_DIR)
#########################
##### Documentation #####