Skip to content

Commit 3ab35bb

Browse files
committed
Missed env var
1 parent 5eeb8ba commit 3ab35bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: .build/build.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ nvm install $nodeVersion
2424
echo "npm ci"
2525
npm ci
2626
# Unshallow on CI system for complete blame info
27-
if [[ "$CI" == "true" ]]; then
27+
echo $CI
28+
if [[ -n "$CI" ]]; then
2829
echo "git fetch --unshallow"
2930
git fetch --unshallow
3031
fi

0 commit comments

Comments
 (0)