Skip to content

Commit 0045675

Browse files
committed
replaced fabiosvm by hook-lang
1 parent f09db89 commit 0045675

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

BUILDING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Use the following commands to build the binaries:
2222

2323
```
2424
cd ~
25-
git clone https://github.com/fabiosvm/hook-lang.git
26-
mv hook-lang hook && cd hook
25+
git clone https://github.com/hook-lang/hook.git
26+
cd hook
2727
scripts/build.sh
2828
```
2929

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2-
[![Build and test](https://github.com/fabiosvm/hook-lang/actions/workflows/build.yml/badge.svg)](https://github.com/fabiosvm/hook-lang/actions/workflows/build.yml)
3-
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/f2f1345083c1455683dabcf48b0ea6dd)](https://app.codacy.com/gh/fabiosvm/hook-lang/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
2+
[![Build and test](https://github.com/hook-lang/hook/actions/workflows/build.yml/badge.svg)](https://github.com/hook-lang/hook/actions/workflows/build.yml)
3+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/b58fa787c8cc480091a8e976164ee203)](https://app.codacy.com/gh/hook-lang/hook/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
44
[![codecov](https://codecov.io/gh/fabiosvm/hook-lang/branch/main/graph/badge.svg?token=mkmMpfS1yu)](https://codecov.io/gh/fabiosvm/hook-lang)
55

66
# The Hook Programming Language
@@ -37,14 +37,14 @@ Hook offers the following key features:
3737
The following command can be used to install Hook on Linux (x64) and macOS (x64, arm64) systems:
3838

3939
```
40-
curl -sSL https://raw.githubusercontent.com/fabiosvm/hook-lang/main/scripts/install.sh | sh
40+
curl -sSL https://raw.githubusercontent.com/hook-lang/hook/main/scripts/install.sh | sh
4141
```
4242

4343
For Windows (x64) users, open a terminal and use the following commands:
4444

4545
```
4646
cd %tmp%
47-
curl -sSLO https://raw.githubusercontent.com/fabiosvm/hook-lang/main/scripts/install.bat
47+
curl -sSLO https://raw.githubusercontent.com/hook-lang/hook/main/scripts/install.bat
4848
install
4949
```
5050

examples/curl.hk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import curl;
66

7-
let c = curl.init("https://api.github.com/repos/fabiosvm/hook-lang");
7+
let c = curl.init("https://api.github.com/repos/hook-lang/hook");
88
curl.setopt(c, curl.OPT_HTTPHEADER, ["User-Agent: curl.hk"]);
99
let response = curl.exec(c);
1010
println(response);

scripts/install.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ rem ----------------------------------------------------------------------------
55
rem Installation script for Hook
66
rem ------------------------------------------------------------------------------
77

8-
set BASE_URL=https://github.com/fabiosvm/hook-lang/releases/download
8+
set BASE_URL=https://github.com/hook-lang/hook/releases/download
99
set VERSION=0.1.0
1010
set ARCH=x64
1111

scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Installation script for Hook
55
#------------------------------------------------------------------------------
66

7-
BASE_URL="https://github.com/fabiosvm/hook-lang/releases/download"
7+
BASE_URL="https://github.com/hook-lang/hook/releases/download"
88
VERSION="0.1.0"
99

1010
#------------------------------------------------------------------------------
@@ -75,7 +75,7 @@ detect_platform() {
7575
download_failed() {
7676
warning "Unable to download: $1"
7777
warning "It may be that there is no binary installer available for this platform: $platform"
78-
warning "It's possible to build Hook from source: <https://github.com/fabiosvm/hook-lang>"
78+
warning "It's possible to build Hook from source: <https://github.com/hook-lang/hook>"
7979
exit 1
8080
}
8181

0 commit comments

Comments
 (0)