Skip to content

Commit

Permalink
update wordings from create_ to generate_
Browse files Browse the repository at this point in the history
  • Loading branch information
hyrodium committed Jun 3, 2023
1 parent 21794b1 commit de4c92e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
all: create_badge create_favicon
all: generate_badge generate_favicon

.PHONY: create_badge create_favicon
.PHONY: generate_badge generate_favicon

create_badge:
generate_badge:
SVG_BASE64=$(shell base64 -w 0 docs/src/assets/logo.svg); \
curl -o "badge.svg" "https://img.shields.io/badge/tested_with-Aqua.jl-05C3DD.svg?logo=data:image/svg+xml;base64,$$SVG_BASE64"

create_favicon:
generate_favicon:
convert -background none docs/src/assets/logo.svg -resize 256x256 logo.png
convert logo.png -gravity center -background none -extent 256x256 logo256.png
convert logo256.png -resize 16x16 logo16.png
Expand Down

0 comments on commit de4c92e

Please sign in to comment.