Add make targets for packaging extensions.

This commit is contained in:
Dave Gallant
2023-04-08 01:03:41 -04:00
parent 05793c96f6
commit c099bddf0d
2 changed files with 7 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
*.zip

6
Makefile Normal file
View File

@@ -0,0 +1,6 @@
package-chrome:
cd ./extensions/chrome && zip -r -FS ../../rfd-redirect-chrome-extension.zip * --exclude '*.git*'
package-firefox:
cd ./extensions/firefox && zip -r -FS ../../rfd-redirect-firefox-extension.zip * --exclude '*.git*'