update run_shell task to use newer python

This commit is contained in:
Jonathan Wren 2022-09-03 13:49:16 -07:00
parent 8032aa9f2f
commit a58098c6b3

View file

@ -21,7 +21,7 @@ def delete_files(files):
def run_shell(command):
# Required to run NPM commands in Windows and *nix
subprocess.call(command, shell=True)
subprocess.run(command.split(" "), check=True)
def generate_sitemap():