Skip to content

Commit

Permalink
fix: using openssl base64 impl
Browse files Browse the repository at this point in the history
  • Loading branch information
abernier committed Jun 5, 2023
1 parent 9ef9d5c commit 715390e
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 @@ -14,7 +14,7 @@ $(DIST)/%.js: $(SRC)/%.b64
cat $^ | ./bin/b64toesm.js > $@

%.b64: %.compressed
cat $^ | base64 > $@
cat $^ | openssl base64 | tr -d '\n' > $@

%.exr.compressed: %.hdr
convert $< $*.exr
Expand Down

0 comments on commit 715390e

Please sign in to comment.