From 4d9e0f4cac686a8b70ff4695b2722fbba3a09597 Mon Sep 17 00:00:00 2001 From: Mike Pelletier Date: Thu, 22 Apr 2021 18:04:02 -0400 Subject: [PATCH] Fix build when .py files are missing --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a3ad7e6..a85f9c9 100644 --- a/Makefile +++ b/Makefile @@ -2,4 +2,4 @@ test: python3.8 -m unittest clean: - rm livesort_hssp/test_livesort.py livesort_hssp/livesort.py + rm -f livesort_hssp/test_livesort.py livesort_hssp/livesort.py