Updating the url of the repo

This commit is contained in:
Afonso Inglês 2025-06-17 18:09:05 +00:00
parent e4c21f8064
commit 685454c83c
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@
```sh
# Set it up...
$ git clone https://github.com/hackclub/harbor && cd harbor
$ git clone https://github.com/hackclub/hackatime && cd hackatime
# Set your config
$ cp .env.example .env

View file

@ -1,7 +1,7 @@
# Get the first 6 characters of the current git commit hash
git_hash = ENV["SOURCE_COMMIT"] || `git rev-parse HEAD` rescue "unknown"
commit_link = git_hash != "unknown" ? "https://github.com/hackclub/harbor/commit/#{git_hash}" : nil
commit_link = git_hash != "unknown" ? "https://github.com/hackclub/hackatime/commit/#{git_hash}" : nil
short_hash = git_hash[0..7]