diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 162c5de..a219caf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - name: Run tests run: PATH="$PWD/result/bin:$PATH" ./test.py - name: Run tests - run: PATH="$PWD/result/bin:$PATH" ./test.py + run: PATH="$PWD/result/bin" ./test.py - uses: actions/upload-artifact@v2 with: name: debug.tar.gz diff --git a/flake.nix b/flake.nix index 9689692..14bb32f 100644 --- a/flake.nix +++ b/flake.nix @@ -8,7 +8,7 @@ let system = "x86_64-linux"; in let nixpkgs = import nixpkgs-git { config = { allowUnfree = true;}; system = system; }; in - let mypackages = with nixpkgs; [ coreutils python3 sqlite gawk ]; in + let mypackages = with nixpkgs; [ coreutils python3 sqlite gawk git ]; in with import nixpkgs-git { system = "x86_64-linux"; }; symlinkJoin {