Skip to content

Commit 34ccdc1

Browse files
Update install instructions to use GitHub raw URL (#52)
* Initial plan * Update install instructions URL to use GitHub raw URL Co-authored-by: leocavalcante <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: leocavalcante <[email protected]>
1 parent bcbd8b5 commit 34ccdc1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Take the advantage of goodie commands like `phpctl create` to start a new projec
2424

2525
### Just install
2626
```shell
27-
/bin/bash -c "$(curl -fsSL https://phpctl.dev/install.sh)"
27+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/opencodeco/phpctl/refs/heads/main/docs/install.sh)"
2828
```
2929
### And that is it!
3030
Try it out:

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ Take the advantage of goodies commands like `phpctl create` to start a new proje
1818
### Installation
1919

2020
```shell
21-
/bin/bash -c "$(curl -fsSL https://phpctl.dev/install.sh)"
21+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/opencodeco/phpctl/refs/heads/main/docs/install.sh)"
2222
```
2323

2424
**That is it!** Now you have `phpctl` available in your system.
2525

2626
#### Custom installation
2727
You can also pass an argument to install at a custom location (e.g. `~/bin`), but you have to make sure that folder is in your `$PATH` variable.
2828
```shell
29-
/bin/bash -c "$(curl -fsSL https://phpctl.dev/install.sh)" ~/bin
29+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/opencodeco/phpctl/refs/heads/main/docs/install.sh)" ~/bin
3030
```
3131

3232
#### Homebrew

tests/install/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
neofetch
3-
/bin/bash -c "$(curl -fsSL https://phpctl.dev/install.sh)"
3+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/opencodeco/phpctl/refs/heads/main/docs/install.sh)"
44
echo ""
55
notty phpctl doctor
66
notty php --version

0 commit comments

Comments
 (0)