File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -459,7 +459,10 @@ def prepare(self):
459
459
# been applied.
460
460
if 'Reversed (or previously applied) patch detected' in err .stdout :
461
461
tc_build .utils .print_warning (
462
- f"Patch ('{ patch } ') has already been applied, consider removing it" )
462
+ f"{ patch } has already been applied in { self .location } , consider removing it"
463
+ )
463
464
else :
464
465
raise err
465
- tc_build .utils .print_info (f"Source sucessfully prepared in { self .location } " )
466
+ else :
467
+ tc_build .utils .print_info (f"Applied { patch } to { self .location } " )
468
+ tc_build .utils .print_info (f"Source successfully prepared in { self .location } " )
Original file line number Diff line number Diff line change @@ -29,8 +29,9 @@ def download(self):
29
29
if not self .remote_tarball_name :
30
30
self .remote_tarball_name = self .local_location .name
31
31
32
- tc_build .utils .curl (f"{ self .base_download_url } /{ self .remote_tarball_name } " ,
33
- destination = self .local_location )
32
+ full_url = f"{ self .base_download_url } /{ self .remote_tarball_name } "
33
+ tc_build .utils .print_info (f"Downloading { full_url } to { self .local_location } ..." )
34
+ tc_build .utils .curl (full_url , destination = self .local_location )
34
35
35
36
# If there is a remote checksum file, download it, find the checksum
36
37
# for the particular tarball, compute the downloaded file's checksum,
You can’t perform that action at this time.
0 commit comments