blob: 4b86a155541f626487c54db6b5a7515f6fd088e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# filen-cli-bin
## Release checklist (scripted)
- [ ] Update `pkgver`.
- [ ] Update `pkgrel`, if needed.
- [ ] Execute `./update.sh`.
## Release checklist (manual)
- [ ] Update `pkgver`.
- [ ] Update `pkgrel`, if needed.
- [ ] Gen hash sums and substitute old with new ones:
```bash
makepkg -g >> PKGBUILD
```
- [ ] Update `.SRCINFO`:
```bash
makepkg --printsrcinfo > .SRCINFO
```
- [ ] Check for common formatting issues:
```bash
namcap PKGBUILD
```
- [ ] Commit and push.
|