Created
April 26, 2021 04:58
-
-
Save cpv123/6a8511f5484c5851196c3898e1e3b32e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
build() { | |
mint build --skip-service-worker --skip-icons | |
} | |
copy_icon() { | |
cp icon.png ./dist | |
} | |
replace_manifest() { | |
cp manifest.json ./dist | |
} | |
build | |
copy_icon | |
replace_manifest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment