diff --git a/README.md b/README.md index d887948..77b8ec9 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/config/initializers/git_version.rb b/config/initializers/git_version.rb index 0e7b036..09eb0c5 100644 --- a/config/initializers/git_version.rb +++ b/config/initializers/git_version.rb @@ -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]