Skip to content

Commit

Permalink
[vcpkg] Keep sym links in Linux zip cache files (#13609)
Browse files Browse the repository at this point in the history
* [vcpkg] Add '-y' to binary caching zip command on non-Windows platforms
  • Loading branch information
here-mikelley authored Sep 19, 2020
1 parent 4902a7b commit 35d7e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolsrc/src/vcpkg/binarycaching.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ namespace
System::get_clean_environment());
#else
System::cmd_execute_clean(
Strings::format(R"(cd '%s' && zip --quiet -r '%s' *)", fs::u8string(source), fs::u8string(destination)));
Strings::format(R"(cd '%s' && zip --quiet -y -r '%s' *)", fs::u8string(source), fs::u8string(destination)));
#endif
}

Expand Down

0 comments on commit 35d7e4f

Please sign in to comment.