From 0f117291c7cdc6a83bd4ac680ac0682df4eb3d27 Mon Sep 17 00:00:00 2001 From: Alvie Rahman Date: Wed, 1 Dec 2021 15:27:55 +0000 Subject: [PATCH] explicitly use python3 in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9b39cda..aded58f 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ countries: git submodule update countries.js: countries - python scripts/generate_countries_list.py countries/countries.json > countries.js + python3 scripts/generate_countries_list.py countries/countries.json > countries.js clean: rm -rf countries.js