diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-12-23 13:12:46 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-12-24 22:35:13 -0500 |
commit | f8c18bacbb8b4334d22fb9cb68e5abbf12e92912 (patch) | |
tree | ce6d4076a900a479be65c4002280c6b2d984f675 /.gitlab-ci.yml | |
parent | 3aa8c593ca8647c5a3a05a84819d515ea3a69538 (diff) | |
download | haskell-f8c18bacbb8b4334d22fb9cb68e5abbf12e92912.tar.gz |
gitlab-ci: Use robocopy instead of bash to copy cabal cache
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c906b3e1b9..d86de7a227 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -318,7 +318,7 @@ validate-x86_64-linux-deb9-unreg: - bash .gitlab/win32-init.sh after_script: - rd /s /q tmp - - bash -c 'cp -Rf $APPDATA/cabal cabal-cache' + - robocopy /np /nfl /ndl /e "%APPDATA%\cabal" cabal-cache cache: paths: - cabal-cache |