Skip to content

Commit e9bb7ba

Browse files
authored
Merge pull request #5995 from dra27/write-reg
Always pass `--no-write-registry` to Cygwin setup
2 parents 2a51251 + c00842e commit e9bb7ba

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

master_changes.md

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ users)
8787
* Pass --symlink-type native to Cygwin setup if symlinks are available [#5830 @dra27]
8888
* Pass --no-version-check to Cygwin setup (suppresses a message box if setup needs updating) [#5830 @dra27]
8989
* Pass --quiet-mode noinput to stop the user interrupting the setup GUI [#5830 @dra27]
90+
* Always pass --no-write-registry to the Cygwin installer, not just on first installation [#5995 @dra27]
9091

9192
## Format upgrade
9293
* Handle init OCaml `sys-ocaml-*` eval variables during format upgrade from 2.0 -> 2.1 -> 2.2 [#5829 @dra27]

src/state/opamSysInteract.ml

+1
Original file line numberDiff line numberDiff line change
@@ -984,6 +984,7 @@ let install_packages_commands_t ?(env=OpamVariable.Map.empty) config sys_package
984984
let common =
985985
[ "--upgrade-also";
986986
"--only-site";
987+
"--no-write-registry";
987988
"--no-version-check";
988989
"--site"; Cygwin.mirror;
989990
"--local-package-dir";

0 commit comments

Comments
 (0)