File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ Use the following commands to build the binaries:
2222
2323```
2424cd ~
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
2727scripts/build.sh
2828```
2929
Original file line number Diff line number Diff line change 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:
3737The 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
4343For Windows (x64) users, open a terminal and use the following commands:
4444
4545```
4646cd %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
4848install
4949```
5050
Original file line number Diff line number Diff line change 44
55import 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 ");
88curl.setopt(c, curl.OPT_HTTPHEADER, ["User-Agent: curl.hk"]);
99let response = curl.exec(c);
1010println(response);
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ rem ----------------------------------------------------------------------------
55rem Installation script for Hook
66rem ------------------------------------------------------------------------------
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
99set VERSION = 0.1.0
1010set ARCH = x64
1111
Original file line number Diff line number Diff line change 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"
88VERSION=" 0.1.0"
99
1010# ------------------------------------------------------------------------------
@@ -75,7 +75,7 @@ detect_platform() {
7575download_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
You can’t perform that action at this time.
0 commit comments