Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f9151ba

Browse files
authored
Merge pull request kyclark#2 from mistermatze/fix-20_password-makefile
Fix Makefile for the 20_password project
2 parents 6b978fc + 54f557f commit f9151ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

20_password/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ test: words
66
pytest -xv test.py unit.py
77

88
words:
9-
[[ ! -f $(WORDS) ]] && (cd ../inputs && unzip words.txt.zip)
9+
[[ -f $(WORDS) ]] || (cd ../inputs && unzip words.txt.zip)

0 commit comments

Comments
 (0)