Skip to content

Commit

Permalink
fbt: git condition fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hedger committed Oct 16, 2023
1 parent ff6f683 commit aafb370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fbt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if [ -z "$FBT_NO_SYNC" ]; then
exit 1;
fi
_FBT_CLONE_FLAGS="--jobs $N_GIT_THREADS";
if [ -z "$FBT_SHALLOW" ]; then
if [ ! -z "$FBT_SHALLOW" ]; then
_FBT_CLONE_FLAGS="$_FBT_CLONE_FLAGS --depth 1";
fi

Expand Down

0 comments on commit aafb370

Please sign in to comment.