Skip to content

Commit c642136

Browse files
committed
chore: update remote script urls
1 parent f014502 commit c642136

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ A fast, interactive CLI tool for executing HTTP requests from `.http` files, bui
2222
Install httpyum and its dependencies with a single command:
2323

2424
```bash
25-
curl -fsSL https://raw.githubusercontent.com/yourusername/httpyum/main/scripts/install.sh | bash
25+
curl -fsSL https://raw.githubusercontent.com/aritra1999/httpyum/main/scripts/install.sh | bash
2626
```
2727

2828
This will:
@@ -32,28 +32,28 @@ This will:
3232

3333
### Manual Installation
3434

35-
Download the latest release for your platform from the [releases page](https://github.com/yourusername/httpyum/releases):
35+
Download the latest release for your platform from the [releases page](https://github.com/aritra1999/httpyum/releases):
3636

3737
**macOS (Apple Silicon)**
3838
```bash
39-
curl -L https://github.com/yourusername/httpyum/releases/latest/download/httpyum-darwin-arm64.tar.gz | tar xz
39+
curl -L https://github.com/aritra1999/httpyum/releases/latest/download/httpyum-darwin-arm64.tar.gz | tar xz
4040
sudo mv httpyum-darwin-arm64 /usr/local/bin/httpyum
4141
```
4242

4343
**macOS (Intel)**
4444
```bash
45-
curl -L https://github.com/yourusername/httpyum/releases/latest/download/httpyum-darwin-amd64.tar.gz | tar xz
45+
curl -L https://github.com/aritra1999/httpyum/releases/latest/download/httpyum-darwin-amd64.tar.gz | tar xz
4646
sudo mv httpyum-darwin-amd64 /usr/local/bin/httpyum
4747
```
4848

4949
**Linux (amd64)**
5050
```bash
51-
curl -L https://github.com/yourusername/httpyum/releases/latest/download/httpyum-linux-amd64.tar.gz | tar xz
51+
curl -L https://github.com/aritra1999/httpyum/releases/latest/download/httpyum-linux-amd64.tar.gz | tar xz
5252
sudo mv httpyum-linux-amd64 /usr/local/bin/httpyum
5353
```
5454

5555
**Windows**
56-
Download from [releases page](https://github.com/yourusername/httpyum/releases) and add to PATH.
56+
Download from [releases page](https://github.com/aritra1999/httpyum/releases) and add to PATH.
5757

5858
### Install from Source
5959

@@ -72,15 +72,15 @@ go install httpyum/cmd/httpyum@latest
7272
Update to the latest version:
7373

7474
```bash
75-
curl -fsSL https://raw.githubusercontent.com/yourusername/httpyum/main/scripts/update.sh | bash
75+
curl -fsSL https://raw.githubusercontent.com/aritra1999/httpyum/main/scripts/update.sh | bash
7676
```
7777

7878
## Uninstalling
7979

8080
Remove httpyum from your system:
8181

8282
```bash
83-
curl -fsSL https://raw.githubusercontent.com/yourusername/httpyum/main/scripts/uninstall.sh | bash
83+
curl -fsSL https://raw.githubusercontent.com/aritra1999/httpyum/main/scripts/uninstall.sh | bash
8484
```
8585

8686
## Dependencies
@@ -242,7 +242,7 @@ httpyum was created as a faster alternative to [httpyac](https://httpyac.github.
242242

243243
```bash
244244
# Clone the repository
245-
git clone https://github.com/yourusername/httpyum.git
245+
git clone https://github.com/aritra1999/httpyum.git
246246
cd httpyum
247247

248248
# Install dependencies

internal/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,6 @@ Keyboard Controls:
9595
"body": "json"
9696
}
9797
98-
For more information, visit: https://github.com/yourusername/httpyum
98+
For more information, visit: https://github.com/aritra1999/httpyum
9999
`)
100100
}

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -e
33

4-
REPO="yourusername/httpyum"
4+
REPO="aritra1999/httpyum"
55
INSTALL_DIR="${INSTALL_DIR:-/usr/local/bin}"
66
BINARY_NAME="httpyum"
77

scripts/update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -e
33

4-
REPO="yourusername/httpyum"
4+
REPO="aritra1999/httpyum"
55
INSTALL_DIR="${INSTALL_DIR:-/usr/local/bin}"
66
BINARY_NAME="httpyum"
77

0 commit comments

Comments
 (0)