Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -17,6 +17,9 @@ result = subprocess.run(
|
|
| 17 |
text=True
|
| 18 |
)
|
| 19 |
|
|
|
|
|
|
|
|
|
|
| 20 |
if result.returncode != 0:
|
| 21 |
raise RuntimeError(f"Node.js error: {result.stderr}")
|
| 22 |
|
|
|
|
| 17 |
text=True
|
| 18 |
)
|
| 19 |
|
| 20 |
+
print("STDOUT:", result.stdout)
|
| 21 |
+
print("STDERR:", result.stderr)
|
| 22 |
+
|
| 23 |
if result.returncode != 0:
|
| 24 |
raise RuntimeError(f"Node.js error: {result.stderr}")
|
| 25 |
|