Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# Termux-heroku-cli

<center>
<a href="https://t.me/skghd1"><img src='https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg' height="70" alt="Contact using Telegram"/></a><a href="https://github.com/SKGHD/Termux-heroku-cli/"><img src='https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Font_Awesome_5_brands_github.svg/800px-Font_Awesome_5_brands_github.svg.png' height="70" alt="Github"/></a>

![Hits](https://hitcounter.pythonanywhere.com/count/tag.svg?url=https%3A%2F%2Fgithub.com%2FSKGHD%2FTermux-heroku-cli)
</center>
<br>

A simple bash script to install heroku CLI on Termux android app with a single click.

## Installation:
Just paste the below code in your termux and Done!. Everything will be automatically installed. <br>
```sh -c "$(curl -fsSL https://raw.githubusercontent.com/SKGHD/Termux-heroku-cli/master/install.sh)"```
```
sh -c "$(curl -fsSL https://raw.githubusercontent.com/SKGHD/Termux-heroku-cli/master/install.sh)"
```

## Getting started:
1. Login using ```heroku login -i```
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/data/data/com.termux/files/usr/bin/bash
pkg install wget tar gzip -y

wget http://cli-assets.heroku.com/heroku-linux-arm.tar.gz -O heroku.tar.gz
wget https://cli-assets.heroku.com/channels/stable/heroku-linux-arm.tar.gz -O heroku.tar.gz
tar -xvzf heroku.tar.gz
mkdir -p /data/data/com.termux/files/usr/lib/heroku
mv heroku/* /data/data/com.termux/files/usr/lib/heroku
Expand Down