From 54f557f9a4af317d8750856e626dd4cdc7559dc8 Mon Sep 17 00:00:00 2001 From: MisterMatze Date: Tue, 1 Sep 2020 20:56:57 +0200 Subject: [PATCH] Fix Makefile for the 20_password project --- 20_password/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/20_password/Makefile b/20_password/Makefile index a508d9f7b..0fd5379a3 100644 --- a/20_password/Makefile +++ b/20_password/Makefile @@ -6,4 +6,4 @@ test: words pytest -xv test.py unit.py words: - [[ ! -f $(WORDS) ]] && (cd ../inputs && unzip words.txt.zip) + [[ -f $(WORDS) ]] || (cd ../inputs && unzip words.txt.zip)