Fix windows CI building (#56)

Linking doesn't work properly on github actions windows machines
This commit is contained in:
Tanguy 2023-01-12 13:38:06 +01:00 committed by GitHub
parent c488f87b09
commit 72d51e4c32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ build_nim() {
if [[ -n "$CI_CACHE" ]]; then if [[ -n "$CI_CACHE" ]]; then
rm -rf "$CI_CACHE" rm -rf "$CI_CACHE"
mkdir "$CI_CACHE" mkdir "$CI_CACHE"
cp -a "$NIM_DIR"/bin/* "$CI_CACHE"/ cp "$NIM_DIR"/bin/* "$CI_CACHE"/
fi fi
} }