From 2957b31e4ec879872ce1a1b18076fe1f15313565 Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Thu, 18 Nov 2021 13:18:38 -0800 Subject: [PATCH] manual: Fix manualFast --- manual/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manual/default.nix b/manual/default.nix index f0557be..fbb598c 100644 --- a/manual/default.nix +++ b/manual/default.nix @@ -59,9 +59,9 @@ in stdenv.mkDerivation { ''; buildPhase = '' - if [ -n "${colmena}" ]; then + if [ -n "${toString colmena}" ]; then echo "Generating CLI help text" - ${colmena}/bin/colmena gen-help-markdown >> src/reference/cli.md + ${toString colmena}/bin/colmena gen-help-markdown >> src/reference/cli.md else echo "Error: No colmena executable passed to the builder" >> src/reference/cli.md fi