File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,9 @@ jobs:
104
104
- if : matrix.ghc == '9.0.1'
105
105
name : (GHC 9.0.1) Use modified `cabal.project`
106
106
run : |
107
- # This seems insane, but it is needed.
107
+ # File has some protections preventing regular `rm`.
108
+ # `&&` insures `rm -f` returns positive.
109
+ # Some platforms have `alias cp='cp -i'`.
108
110
rm -f -v cabal.project && cp -v cabal-ghc901.project cabal.project
109
111
- if : runner.os == 'Windows' && matrix.ghc == '8.8.4'
110
112
name : (Windows,GHC 8.8) Modify `cabal.project` to workaround segfaults
Original file line number Diff line number Diff line change 96
96
- if : matrix.ghc == '9.0.1'
97
97
name : (GHC 9.0.1) Use modified `cabal.project`
98
98
run : |
99
- # This seems insane, but it is needed.
99
+ # File has some protections preventing regular `rm`.
100
+ # `&&` insures `rm -f` returns positive.
101
+ # Some platforms have `alias cp='cp -i'`.
100
102
rm -f -v cabal.project && cp -v cabal-ghc901.project cabal.project
101
103
- if : runner.os == 'Windows' && matrix.ghc == '8.8.4'
102
104
name : (Windows,GHC 8.8) Modify `cabal.project` to workaround segfaults
You can’t perform that action at this time.
0 commit comments