mirror of
https://github.com/eRgo35/ah.git
synced 2026-02-04 05:16:09 +01:00
automatic version bump
This commit is contained in:
12
README.md
12
README.md
@@ -23,15 +23,25 @@ $ rustup default stable
|
|||||||
```
|
```
|
||||||
|
|
||||||
Clone this repo
|
Clone this repo
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ git clone https://github.com/eRgo35/ah
|
$ git clone https://github.com/eRgo35/ah
|
||||||
```
|
```
|
||||||
|
|
||||||
Change directory
|
Change directory
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ cd ah
|
$ cd ah
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ cargo aur
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ cd target/cargo-aur
|
||||||
|
```
|
||||||
|
|
||||||
Install package
|
Install package
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
use clap::{Args, Parser, Subcommand};
|
use clap::{Args, Parser, Subcommand};
|
||||||
|
|
||||||
|
const VERSION: Option<&str> = option_env!("CARGO_PKG_VERSION");
|
||||||
|
|
||||||
#[derive(Parser)]
|
#[derive(Parser)]
|
||||||
#[command(
|
#[command(
|
||||||
name = "ah",
|
name = "ah",
|
||||||
author = "Michał Czyż",
|
author = "Michał Czyż",
|
||||||
version = "0.1.0",
|
version = VERSION.unwrap_or("unknown"),
|
||||||
about = "A declarative package manager for Arch Linux",
|
about = "A declarative package manager for Arch Linux",
|
||||||
long_about = "Arch Helper is a declarative package management tool for Arch Linux. It leverages paru or other package managers for seamless integration."
|
long_about = "Arch Helper is a declarative package management tool for Arch Linux. It leverages paru or other package managers for seamless integration."
|
||||||
)]
|
)]
|
||||||
|
|||||||
Reference in New Issue
Block a user