From bdb8a8be6f8a7e5dee361e28a75ce317c10da377 Mon Sep 17 00:00:00 2001 From: Alejandro Gallo Date: Mon, 14 Mar 2022 13:43:31 +0100 Subject: [PATCH] Fix env value --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7b717e6..e3aece5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,11 +34,11 @@ jobs: run: | mkdir -p build/${{matrix.compiler}} cd build/${{matrix.compiler}} - nix-shell $_NIXSHELL --run '../../configure' - nix-shell $_NIXSHELL --run 'make ctf' - nix-shell $_NIXSHELL --run 'make' + nix-shell $NIXSHELL --run '../../configure' + nix-shell $NIXSHELL --run 'make ctf' + nix-shell $NIXSHELL --run 'make' env: - _NIXSHELL="../../shell.nix" + NIXSHELL="../../shell.nix" documentation: