Skip to content

Commit

Permalink
dont use stbuf
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdovzhanyn committed Oct 1, 2024
1 parent 3b6ce34 commit 8029f44
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions scripts/fetch_v8.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
#!/bin/bash
set -x

echo "IN HERE"
which fetch

if [ ! -d v8/build ]; then
stdbuf -oL echo "Fetching V8..."
stdbuf -oL fetch v8
echo "Fetching V8..."
fetch v8
else
stdbuf -oL echo "Syncing V8..."
stdbuf -oL gclient sync
echo "Syncing V8..."
gclient sync
fi

0 comments on commit 8029f44

Please sign in to comment.