File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ LINUX_MAKE := \
170
170
171
171
$(CLANG_DIR ) :
172
172
$(warning $(YELLOW ) Clang directory $(CLANG_DIR ) does not exist, downloading prebuilt binaries $(NC ) )
173
- wget --no-verbose --show-progress $(CLANG_URL ) -O clang.tar.xz
173
+ wget --no-verbose --show-progress --progress=bar:force $(CLANG_URL ) -O clang.tar.xz
174
174
mkdir -p $(CLANG_DIR )
175
175
tar -xf clang.tar.xz -C $(CLANG_DIR ) --strip-components=1
176
176
Original file line number Diff line number Diff line change @@ -39,14 +39,14 @@ if [ $ACK -eq 0 ]; then
39
39
echo " Downloading kernel version $VERSION "
40
40
41
41
if [ $first_char -ge $MIN_VERSION ] && [ $first_char -le $MAX_VERSION ]; then
42
- wget --no-verbose --show-progress $LINUX_URL /v${first_char} .x/linux-$VERSION .tar.xz
42
+ wget --no-verbose --show-progress --progress=bar:force $LINUX_URL /v${first_char} .x/linux-$VERSION .tar.xz
43
43
tar -xf linux-$VERSION .tar.xz
44
44
else
45
45
echo " $first_char is not a valid kernel major version number"
46
46
exit 1
47
47
fi
48
48
else
49
- wget $ACK_URL /$VERSION .tar.gz
49
+ wget --no-verbose --show-progress --progress=bar:force $ACK_URL /$VERSION .tar.gz
50
50
mkdir -p $VERSION
51
51
tar -xf $VERSION .tar.gz -C $VERSION
52
52
fi
You can’t perform that action at this time.
0 commit comments