add shell arg back

This commit is contained in:
Jonathan Wren 2022-09-03 13:59:48 -07:00
parent a58098c6b3
commit cf2a9c8d65

View file

@ -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():