Skip to content

Commit

Permalink
fix install, rename install to install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Ragnt committed Aug 10, 2024
1 parent bb770ee commit e5caa9f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,17 @@ You can download pre-compiled binaries of AngryOxide in the [releases](https://g

```bash
tar -xf angryoxide-linux-x86_64.tar.gz # Untar
chmod +x install # Make executable
sudo install install # Install (as root, including zsh/bash completions)
chmod +x install.sh # Make executable
sudo ./install.sh # Install (as root, including zsh/bash completions)
```

You can get information about how to use AngryOxide in the [User Guide](https://github.com/Ragnt/AngryOxide/wiki/1.-User-Guide).

#### Uninstalling:

```bash
sudo ./install.sh uninstall # Uninstall
```

## Features

Expand Down
5 changes: 3 additions & 2 deletions install → install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ case "$1" in
uninstall
;;
*)
echo "Usage: $0 (install|uninstall)"
exit 1
install_binary
install_bash
install_zsh
;;
esac

0 comments on commit e5caa9f

Please sign in to comment.