Skip to content

Commit

Permalink
Updated doc and misc
Browse files Browse the repository at this point in the history
  • Loading branch information
ymkjp committed Feb 16, 2019
1 parent 6eebcc3 commit 7b974b2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
26 changes: 23 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,29 @@ Supported configuration files are the ones relating to:

## Installation

* Download package from [![the latest release](https://img.shields.io/github/release/announce/altogether.svg?style=flat)](https://github.com/announce/altogether/releases/latest) accordingly
* macOS: `darwin-amd64.zip`
* Linux: `linux-amd64.zip`
#### How to get `altogether` command

One of the simplest way is:

1. Download package from [![the latest release](https://img.shields.io/github/release/announce/altogether.svg?style=flat)](https://github.com/announce/altogether/releases/latest) according to platform:
* macOS: `darwin-amd64.tar.gz`
* Linux: `linux-amd64.tar.gz`
1. Extract the compressed tarball and place `altogether` to somewhere under `PATH` directory:

```bash
tar -C ~/Downloads/ -zxvf DOWNLOADED_FILE.tar.gz
mv ~/Downloads/DOWNLOADED_FILE/altogether /usr/local/bin
altogether --help
```

#### For Arch Linux users

If you are using Arch Linux, [AUR Package](https://aur.archlinux.org/packages/altogether/) is recommended.
Install `altogether` with AUR helper such as `yay`:

```bash
yay -Syu altogether
```

## Usage

Expand Down
6 changes: 0 additions & 6 deletions script/distribution.sh

This file was deleted.

2 changes: 1 addition & 1 deletion script/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ compress () {
cd "\${TARGET_PATH}/.."
tar cfvz "\${TARBALL}" "\${DIRNAME}"
FINGERPRINT="\$(sha256sum -b "\${TARBALL}" | awk '{print \$1}')"
echo "\${FINGERPRINT}" > "\${DIRNAME}-\${FINGERPRINT:0:7}.txt"
echo "\${FINGERPRINT}" > "\${DIRNAME}-sha2-\${FINGERPRINT:0:7}.txt"
}
EOS
}
Expand Down

0 comments on commit 7b974b2

Please sign in to comment.