Skip to content

Commit

Permalink
windows-compile-vs.ps1: fixed cache filenames for leveldb and libdeflate
Browse files Browse the repository at this point in the history
  • Loading branch information
dktapps committed Dec 19, 2024
1 parent 6018bf9 commit 97ebe2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions windows-compile-vs.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ function build-pthreads4w {
function build-leveldb {
write-library "leveldb" $LEVELDB_MCPE_VER
write-download
$file = download-file "https://github.com/pmmp/leveldb/archive/$LEVELDB_MCPE_VER.zip"
$file = download-file "https://github.com/pmmp/leveldb/archive/$LEVELDB_MCPE_VER.zip" "leveldb"
write-extracting
unzip-file $file $pwd
Move-Item leveldb-* leveldb >> $log_file 2>&1
Expand Down Expand Up @@ -373,7 +373,7 @@ function build-leveldb {
function build-libdeflate {
write-library "libdeflate" $LIBDEFLATE_VER
write-download
$file = download-file "https://github.com/ebiggers/libdeflate/archive/$LIBDEFLATE_VER.zip"
$file = download-file "https://github.com/ebiggers/libdeflate/archive/$LIBDEFLATE_VER.zip" "libdeflate"
write-extracting
unzip-file $file $pwd
Move-Item libdeflate-* libdeflate >> $log_file 2>&1
Expand Down

0 comments on commit 97ebe2a

Please sign in to comment.