Skip to content

Commit

Permalink
batch correctly rename double extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Jun 23, 2018
1 parent 83f333b commit 87860d0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dev/tasks/conda-recipes/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ test_script:
- pushd arrow\dev\tasks\conda-recipes
- conda.exe build --output-folder . parquet-cpp arrow-cpp pyarrow
- pushd win-64
- for %%f in (*.tar.bz2) do ren "%%f" "%%~nf-win-64.tar.bz2"
- for %%f in (*.tar.bz2) do (
set %%g=%%~nf
ren "%%f" "%%~ng-win-64.tar.bz2"
)

artifacts:
# this must be relative and child of the build C:\projects\crossbow directory
Expand Down

0 comments on commit 87860d0

Please sign in to comment.