From 96f743b42f444355718c3c0523d4a2a7450e25e7 Mon Sep 17 00:00:00 2001 From: Volker Schukai <volker.schukai@schukai.com> Date: Mon, 13 May 2024 00:16:07 +0200 Subject: [PATCH] fix: wip new pipeline --- nix/scripts/run-ci-tests.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/scripts/run-ci-tests.nix b/nix/scripts/run-ci-tests.nix index 9b11af361..6bd9934be 100644 --- a/nix/scripts/run-ci-tests.nix +++ b/nix/scripts/run-ci-tests.nix @@ -5,7 +5,7 @@ }: pkgs.writeShellScriptBin "run-ci-tests" '' echo "run ci tests" - if [ -n "''${CI_JOB_TOKEN}" ]; then + if [ -z "''${CI_JOB_TOKEN}" ]; then echo "You are in a CI environment, this shell is not intended for CI, but for local development" exit 1 fi -- GitLab