(app_path_list)
| 203 | install_failed_apps.append(app_path) |
| 204 | |
| 205 | def install_vue_install(app_path_list): |
| 206 | for app_path in app_path_list: |
| 207 | command = [NPM_CMD, "install", "--force"] |
| 208 | try: |
| 209 | run_command(command, path=app_path) |
| 210 | except Exception as e: |
| 211 | print("Error:", e) |
| 212 | install_failed_apps.append(app_path) |
| 213 | command = [NPM_CMD, "run", "build"] |
| 214 | try: |
| 215 | run_command(command, path=app_path) |
| 216 | except Exception as e: |
| 217 | print("Error:", e) |
| 218 | install_failed_apps.append(app_path) |
| 219 | |
| 220 | def add_or_update_app(app: str, app_spec_dict): |
| 221 | url = "" |
no test coverage detected