mirror of
https://github.com/rio-labs/rio.git
synced 2026-01-06 05:09:43 -06:00
fixed publishing script
This commit is contained in:
@@ -59,7 +59,11 @@ def ensure_up_to_date_with_remote() -> None:
|
||||
def build_frontend() -> None:
|
||||
# Note: `shell=True` is required on Windows because `npm` is a `.cmd` file
|
||||
# and not a `.exe`
|
||||
subprocess.run(["npm", "run", "build"], shell=True, check=True)
|
||||
subprocess.run(
|
||||
["npm", "run", "build"],
|
||||
shell=sys.platform == "win32",
|
||||
check=True,
|
||||
)
|
||||
|
||||
|
||||
def ensure_tests_pass() -> None:
|
||||
|
||||
Reference in New Issue
Block a user