diff options
-rw-r--r-- | tools/buildsteps/windows/buildhelpers.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/buildsteps/windows/buildhelpers.sh b/tools/buildsteps/windows/buildhelpers.sh index d2ff9f7871..c3ccb19e9f 100644 --- a/tools/buildsteps/windows/buildhelpers.sh +++ b/tools/buildsteps/windows/buildhelpers.sh @@ -117,11 +117,11 @@ do_clean() { do_download() { if [ ! -d $LIBNAME ]; then if [ ! -f /downloads/$ARCHIVE ]; then - do_print_status "$ARCHIVE" "$orange_color" "Downloading" + do_print_status "$LIBNAME-$VERSION" "$orange_color" "Downloading" do_wget $BASE_URL/$VERSION.tar.gz $ARCHIVE fi - do_print_status "$ARCHIVE" "$blue_color" "Extracting" + do_print_status "$LIBNAME-$VERSION" "$blue_color" "Extracting" mkdir $LIBNAME && cd $LIBNAME tar -xaf /downloads/$ARCHIVE --strip 1 else |