From 2315480c838af75355784768bbc941e16c491ed5 Mon Sep 17 00:00:00 2001 From: "carpentry-heartbeat[bot]" Date: Fri, 10 Jul 2026 14:29:09 +0200 Subject: [PATCH] Fix stale install URL in docs The installation instructions in the README and the Path module doc string pointed at git@git.veitheller.de:carpentry/path.git, a host and repository path that are no longer where the package lives. Point them at the canonical github.com/carpentry-org/path used by the rest of the package ecosystem so a copy-pasted load line actually resolves. --- README.md | 2 +- path.carp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2722b1d..ea40b37 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ is a simple file path library for Carp. ## Installation ```clojure -(load "git@git.veitheller.de:carpentry/path.git@0.0.4") +(load "git@github.com:carpentry-org/path@0.0.4") ``` ### Usage diff --git a/path.carp b/path.carp index ff57372..12ef7df 100644 --- a/path.carp +++ b/path.carp @@ -3,7 +3,7 @@ ## Installation ```clojure -(load \"git@git.veitheller.de:carpentry/path.git@0.0.4\") +(load \"git@github.com:carpentry-org/path@0.0.4\") ``` ### Usage