From cf2a9c8d65ce8444e04f40be8e42a2c6a406953d Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 3 Sep 2022 13:59:48 -0700 Subject: [PATCH] add shell arg back --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 00ac6755..ea48a174 100644 --- a/tasks.py +++ b/tasks.py @@ -21,7 +21,7 @@ def delete_files(files): def run_shell(command): # Required to run NPM commands in Windows and *nix - subprocess.run(command.split(" "), check=True) + subprocess.run(command, check=True, shell=True) def generate_sitemap():