diff options
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix index c110c7c..c6d6179 100644 --- a/default.nix +++ b/default.nix @@ -61,7 +61,7 @@ with pkgs.stdenv; rec { buildInputs = baseAttrs.buildInputs ++ [ docker-compose ]; buildPhase = '' source .envrc - docker-compose config || { + docker-compose config &> /dev/null || { echo "Invalid docker-compose.yml file." exit 1 } |