Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 60feeffb71 | |||
| f02517fdd3 | |||
| d341c12009 |
3
Makefile
3
Makefile
@@ -19,8 +19,7 @@ format:
|
|||||||
cargo fmt --all
|
cargo fmt --all
|
||||||
|
|
||||||
rpm:
|
rpm:
|
||||||
rm -rf $(HOME)/rpmbuild
|
rm -f $(HOME)/rpmbuild/SOURCES/$(PROJECT)-$(VERSION).tar.gz
|
||||||
rpmdev-setuptree
|
|
||||||
tar -czf $(HOME)/rpmbuild/SOURCES/$(PROJECT)-$(VERSION).tar.gz \
|
tar -czf $(HOME)/rpmbuild/SOURCES/$(PROJECT)-$(VERSION).tar.gz \
|
||||||
--transform "s|^|$(PROJECT)-$(VERSION)/|" \
|
--transform "s|^|$(PROJECT)-$(VERSION)/|" \
|
||||||
data \
|
data \
|
||||||
|
|||||||
@@ -12,6 +12,14 @@ Please refer to the [DOCUMENTATION.md](DOCUMENTATION.md) file for more informati
|
|||||||
|
|
||||||
Please refer to project's [releases](https://git.rawleenc.dev/rawleenc/feddy/releases), copy the RPM package link of the latest version and install it with dnf.
|
Please refer to project's [releases](https://git.rawleenc.dev/rawleenc/feddy/releases), copy the RPM package link of the latest version and install it with dnf.
|
||||||
|
|
||||||
|
## Generate Fish completion
|
||||||
|
|
||||||
|
You can generate the fish completion script by running the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
feddy --completion=fish > ~/.config/fish/completions/feddy.fish
|
||||||
|
```
|
||||||
|
|
||||||
## Build from source
|
## Build from source
|
||||||
|
|
||||||
This is a Rust project, so you must first install [Rust](https://www.rust-lang.org/tools/install) and then run the following command to build the project:
|
This is a Rust project, so you must first install [Rust](https://www.rust-lang.org/tools/install) and then run the following command to build the project:
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ body = """
|
|||||||
{% if version %}\
|
{% if version %}\
|
||||||
{% if previous.version %}\
|
{% if previous.version %}\
|
||||||
## [{{ version | trim_start_matches(pat="v") }}]\
|
## [{{ version | trim_start_matches(pat="v") }}]\
|
||||||
($REPO/-/compare/{{ previous.version }}...{{ version }}) - {{ timestamp | date(format="%Y-%m-%d") }}
|
($REPO/compare/{{ previous.version }}...{{ version }}) - {{ timestamp | date(format="%Y-%m-%d") }}
|
||||||
{% else %}\
|
{% else %}\
|
||||||
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
|
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
|
||||||
{% endif %}\
|
{% endif %}\
|
||||||
|
|||||||
Reference in New Issue
Block a user