Skip to content

Commit

Permalink
Merge pull request #397 from TG9541/fixes
Browse files Browse the repository at this point in the history
fixes #396 add inc folder to tgz binary archive
  • Loading branch information
TG9541 committed Jan 30, 2021
2 parents d430ce9 + e1fd233 commit 2a7c278
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ zip: build
find out/ -name "target" -print | zip -r out/stm8ef-bin -@

tgz: build
( find out/ -path "*target/*" -print0 ; find out/ -name "*.ihx" -type f -print0 ; find out/ -name "simbreak.txt" -type f -print0 ) | tar -czvf out/stm8ef-bin.tgz forth.asm forth.mk main.c LICENSE.md docs/words.md mcu lib tools --null -T -
( find out/ -path "*target/*" -print0 ; find out/ -name "*.ihx" -type f -print0 ; find out/ -name "simbreak.txt" -type f -print0 ) | tar -czvf out/stm8ef-bin.tgz forth.asm forth.mk main.c LICENSE.md docs/words.md inc mcu lib tools --null -T -
( find out/ -name "forth.rst" -type f -print0 ) | tar -czvf out/stm8ef-rst.tgz --null -T -

build: words
Expand Down
2 changes: 1 addition & 1 deletion tools/codeload.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def upload(path):
tstWord = m.group(2)
line = m.group(3)
txCon = notInDictionary(tstWord) ^ (cndWord == 'ifdef')
print('CX #' + cndWord, tstWord + ' (', txCon, ') ' + line)
vprint('CX #' + cndWord, tstWord + ' (', txCon, ') ' + line)
if not txCon:
continue

Expand Down

0 comments on commit 2a7c278

Please sign in to comment.