Skip to content

Commit 2ad2de1

Browse files
committed
kernel/build: fix re-using git kernel trees
1 parent 557cb32 commit 2ad2de1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ case $KTREE in
3030
;;
3131
*.git)
3232
PATCHSUFFIX="$KTREE_NAME"
33-
if [ ! -d "linux-$ARCH" -o "$(cat ktree)" != "$KTRE" ]; then
33+
if [ ! -d "linux-$ARCH" -o "$(cat ktree)" != "$KTREE" ]; then
3434
rm -rf "linux-$ARCH"
3535
git clone "$KTREE" "linux-$ARCH"
3636
else

0 commit comments

Comments
 (0)