kou commented on code in PR #44462: URL: https://github.com/apache/arrow/pull/44462#discussion_r1805438441
########## dev/release/verify-release-candidate-wheels.bat: ########## @@ -55,7 +55,13 @@ python arrow\dev\release\download_rc_binaries.py %ARROW_VERSION% %RC_NUMBER% ^ call deactivate set ARROW_TEST_DATA=%cd%\arrow\testing\data +set PARQUET_TEST_DATA=%cd%\arrow\cpp\submodules\parquet-testing\data +@rem Download IANA Timezone Database for ORC C++ +curl https://cygwin.osuosl.org/noarch/release/tzdata/tzdata-2024a-1.tar.xz --output tzdata.tar.xz || exit /B +mkdir %USERPROFILE%\Downloads\test\tzdata +arc unarchive tzdata.tar.xz %USERPROFILE%\Downloads\test\tzdata Review Comment: Let's try `tar`: ```suggestion tar --extract --file tzdata.tar.xz --directory %USERPROFILE%\Downloads\test\tzdata ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
