Skip to content

Commit

Permalink
Remove hash-bang from inserted flk builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
chr15m committed Jun 4, 2020
1 parent 0090420 commit 24461e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $(DEST): mal/impls/bash/mal src/*.sh $(INLINES) Makefile
cat src/extras.sh >> $@
printf 'read -d "" __FLECK__REPCAPTURE << __FLECK__INLINEMALFILE\n' >> $@
cat $(INLINES) >> $@
[ "$(INSERT)" = "" ] || cat $(INSERT) >> $@
[ "$(INSERT)" = "" ] || grep -Ev '^\s*$|^\s*\#\!' $(INSERT) >> $@
printf '\n__FLECK__INLINEMALFILE\nREP "(do $${__FLECK__REPCAPTURE})";\n' >> $@
printf 'REP "(def! *fleck-revision* \\"$(REVISION)\\")"\n' >> $@
if [ "$(NOREPL)" = "" ]; then cat src/file-repl.sh; fi >> $@
Expand Down

0 comments on commit 24461e3

Please sign in to comment.