Skip to content

Commit 9885ba9

Browse files
committedDec 14, 2018
cargo release
1 parent 4792027 commit 9885ba9

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed
 

Diff for: ‎Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "onefetch"
33
description = "Neofetch for your source code"
4-
version = "1.0.0"
4+
version = "1.0.5"
55
authors = ["o2sh <ossama-hjaji@live.fr>"]
66
readme = "README.md"
77
license = "MIT"

Diff for: ‎Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
install:
2+
cargo build --release
3+
sudo cp target/release/onefetch /usr/local/bin
4+
uninstall:
5+
sudo rm -f /usr/local/bin/onefetch

Diff for: ‎README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# onefetch
2-
[![crate](https://img.shields.io/badge/crates.io-1.0.0-red.svg)](https://crates.io/crates/onefetch)
2+
[![crate](https://img.shields.io/badge/crates.io-1.0.5-red.svg)](https://crates.io/crates/onefetch)
33
[![Travis status](https://travis-ci.org/o2sh/onefetch.svg?branch=master)](https://travis-ci.org/o2sh/onefetch)
44
<a href="./LICENSE.md"><img src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
55

66
Onefetch is a command-line system information tool that displays information about your project directly on your terminal.
77

88
## Usage
99

10-
You can either build the binary from the source code (tips: cargo install onefetch) or get it from [here](https://github.com/o2sh/onefetch/releases) and add it to your $PATH.
10+
Clone the repository and install to `/usr/local/bin` with `make install`.
11+
Or get the binary from [here](https://github.com/o2sh/onefetch/releases) and add it to your $PATH.
1112

1213
```sh
1314
$ cd /path/of/your/repo

0 commit comments

Comments
 (0)
Please sign in to comment.