From f59a3aab0c72f7afb9e0cb03cf0e9be9d523023f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sat, 16 Nov 2024 13:54:04 +0000 Subject: [PATCH] Fix links --- _redirects | 1 + docs/tests.md | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/_redirects b/_redirects index 38df8b350..d1f569aa0 100644 --- a/_redirects +++ b/_redirects @@ -1,3 +1,4 @@ /blog/2023/03/20/devenv-10-rewrite-in-rust/ /blog/2024/03/20/devenv-10-rewrite-in-rust/ 301 /blog/2024/10/22/devenv-is-switching-nix-implementation-to-tvix/ /blog/2024/10/22/devenv-is-switching-its-nix-implementation-to-tvix/ 301 /pre-commit-hooks/ /git-hooks/ 301 +/roadmap/ /blog/2024/10/22/devenv-is-switching-its-nix-implementation-to-tvix/ 302 diff --git a/docs/tests.md b/docs/tests.md index 6e42205c9..fcadacc23 100644 --- a/docs/tests.md +++ b/docs/tests.md @@ -4,7 +4,7 @@ Tests are a way to ensure that your development environment is working as expect Running `devenv test` will build your environment and run the tests defined in `enterTest`. -If you have [processes](/processes.md) defined in your environment, they will be started and stopped for you. +If you have [processes](processes.md) defined in your environment, they will be started and stopped for you. ## Writing your first test @@ -35,7 +35,7 @@ By default, the `enterTest` detects if `.test.sh` file exists and runs it. ## Testing with processes -If you have [processes](/processes.md) defined in your environment, +If you have [processes](processes.md) defined in your environment, they will be started and stopped for you. ```nix title="devenv.nix"