We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ac0dc6 commit 16e351dCopy full SHA for 16e351d
projects/gemini-cli/build.sh
@@ -48,6 +48,8 @@ npm prune --omit=dev
48
# (production dependencies + jazzer).
49
npm install @jazzer.js/core
50
51
-# 5. Copy this minimal, pruned node_modules to the output directory.
52
-# This will now be fast and provide the necessary runtime files.
53
-cp -r node_modules "$OUT/"
+# 5. Copy the pruned node_modules to the output directory using rsync for progress.
+# This will be fast and will show you exactly what's happening.
+echo "Copying pruned node_modules to output directory..."
54
+rsync -ah --progress node_modules/ "$OUT/node_modules/"
55
+echo "Copy complete."
0 commit comments