We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c1d45b commit 0709764Copy full SHA for 0709764
Makefile
@@ -1,14 +1,24 @@
1
EXT := extension
2
+SRC := $(shell find . \
3
+ -type f -not -path "./.git/*" \
4
+ -type f -not -path "*.zip" \
5
+ -type f -not -path "*.xpi" \
6
+ -and -not -path "Makefile")
7
8
.POSIX:
9
.SUFFIXES:
10
11
$(EXT).xpi: $(EXT).zip
12
cp $< $@
13
-$(EXT).zip:
- zip -r -FS ./$@ * --exclude '*.git*'
14
+$(EXT).zip: $(SRC)
15
+ zip -r -FS ./$@ $(SRC)
16
17
.PHONY: clean
18
clean:
19
$(RM) $(EXT).zip $(EXT).xpi
20
+
21
+.PHONY: re
22
+re: clean $(EXT).xpi
23
24
+.NOTPARALLEL: re
manifest.json
@@ -19,7 +19,7 @@
],
"browser_specific_settings": {
"gecko": {
- "id": "[email protected]"
+ "id": "{5add367e-cb92-4f5a-b08c-363808acbb14}"
}
},
25
"icons": {
0 commit comments