diff --git a/bin/build-icons.sh b/bin/build-icons.sh index 1d53ea65d..2a9737433 100755 --- a/bin/build-icons.sh +++ b/bin/build-icons.sh @@ -13,7 +13,7 @@ for size in "${apple[@]}"; do done cp logo.png apple-touch-icon.png convert logo.png \ - \( +clone -alpha extract \ + \( +clone -alpha extract \ -draw 'fill black polygon 0,0 0,80 80,0 fill white circle 80,80 80,0' \ \( +clone -flip \) -compose Multiply -composite \ \( +clone -flop \) -compose Multiply -composite \ diff --git a/src/parser/parse-string-literal.ts b/src/parser/parse-string-literal.ts index 78e86eaea..c1e8f1a3e 100644 --- a/src/parser/parse-string-literal.ts +++ b/src/parser/parse-string-literal.ts @@ -47,4 +47,3 @@ export function parseStringLiteral (str: string): string { } return ret } -