File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
src/Paket.Core/PaketConfigFiles Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1- #### 5.237.7 - 2019-11-26
1+ #### 5.238.0 - 2019-11-26
2+ * Exclude top-level linux folders for docker support - https://github.com/fsprojects/Paket/issues/3123
23* More verbose logging
34
45#### 5.237.0 - 2019-11-25
Original file line number Diff line number Diff line change @@ -1912,6 +1912,13 @@ type ProjectFile with
19121912 if di.Name = " .fable" then false else
19131913 if di.Name = " node_modules" then false else
19141914 if topLevel && isLinux && di.FullName = " /sys" then false else
1915+ if topLevel && isLinux && di.FullName = " /usr" then false else
1916+ if topLevel && isLinux && di.FullName = " /proc" then false else
1917+ if topLevel && isLinux && di.FullName = " /lib" then false else
1918+ if topLevel && isLinux && di.FullName = " /tmp" then false else
1919+ if topLevel && isLinux && di.FullName = " /home" then false else
1920+ if topLevel && isLinux && di.FullName = " /media" then false else
1921+ if topLevel && isLinux && di.FullName = " /etc" then false else
19151922 if path = paketPath then false else
19161923 Path.Combine( path, Constants.DependenciesFileName)
19171924 |> File.Exists
You can’t perform that action at this time.
0 commit comments