mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 12:10:31 -04:00
ONLYOFFICE Document Server is an online office suite comprising viewers and editors for texts, spreadsheets and presentations, fully compatible with Office Open XML formats: .docx, .xlsx, .pptx and enabling collaborative editing in real time. WWW: https://www.onlyoffice.com/ Reviewed by: bapt Differential Revision: https://reviews.freebsd.org/D33923
11 lines
466 B
Python
11 lines
466 B
Python
--- build_tools/scripts/build_js.py.orig 2021-12-21 17:52:55 UTC
|
|
+++ build_tools/scripts/build_js.py
|
|
@@ -97,7 +97,7 @@ def _run_npm_cli(directory):
|
|
return base.cmd_in_dir(directory, "npm", ["install", "-g", "grunt-cli"])
|
|
|
|
def _run_grunt(directory, params=[]):
|
|
- return base.cmd_in_dir(directory, "grunt", params)
|
|
+ return base.cmd_in_dir(directory, "%%WRKSRC%%/sdkjs/node_modules/.bin/grunt", params)
|
|
|
|
def build_interface(directory):
|
|
_run_npm(directory)
|