From 87087194395db6ded7ed47f1bc493337abcaa133 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 12 Jun 2021 17:22:32 +0200 Subject: [PATCH] ci: drone: replace nix-shell with nix-run --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 70b7e63..68f3919 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,5 +13,5 @@ name: exec runner test steps: - name: test commands: - - nix shell 'nixpkgs#hello' -c hello + - nix run 'nixpkgs#hello' ...