mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-16 19:18:32 +02:00
update run_shell task to use newer python
This commit is contained in:
parent
8032aa9f2f
commit
a58098c6b3
1 changed files with 1 additions and 1 deletions
2
tasks.py
2
tasks.py
|
@ -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():
|
||||
|
|
Loading…
Add table
Reference in a new issue