fix(users/Profpatsch/blog): fix path check assoc
It would left-associate in some nix version, this way it’s clear that you want to join a path segment. Change-Id: I82a00de720187d1faf908c842e396301ea435a97 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4886 Reviewed-by: Profpatsch <mail@profpatsch.de> Reviewed-by: sterni <sternenseemann@systemli.org> Autosubmit: Profpatsch <mail@profpatsch.de> Tested-by: BuildkiteCI
This commit is contained in:
parent
a6304a1e33
commit
546251678a
1 changed files with 2 additions and 2 deletions
|
@ -127,8 +127,8 @@ let
|
|||
}:
|
||||
assert
|
||||
(lib.assertMsg
|
||||
(builtins.pathExists (depot.path + "/" + relativePath))
|
||||
"depotCgitLink: path /${relativePath} does not exist in depot");
|
||||
(builtins.pathExists (depot.path.origSrc + "/${relativePath}"))
|
||||
"depotCgitLink: path /${relativePath} does not exist in depot, and depot.path was ${toString depot.path}");
|
||||
"https://code.tvl.fyi/tree/${relativePath}";
|
||||
|
||||
# look up a route by path ($1)
|
||||
|
|
Loading…
Reference in a new issue