Skip to content

Commit 140e5b3

Browse files
committed
_
Signed-off-by: Sora Morimoto <[email protected]>
1 parent 7950e0a commit 140e5b3

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/workflow.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@ jobs:
2626
runs-on: ${{ matrix.os }}
2727

2828
steps:
29+
- name: Set git to use LF
30+
if: matrix.os == 'windows-latest'
31+
run: |
32+
git config --global core.autocrlf false
33+
git config --global core.eol lf
34+
git config --global core.ignorecase false
35+
2936
- name: Checkout tree
3037
uses: actions/checkout@v4
3138

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /bin/sh
1+
#!/usr/bin/env bash
22

33
# Adapted from the ocamlnet configure script.
44

ocsigenserver.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ depends: [
5757
"re" {>= "1.11.0"}
5858
"cryptokit"
5959
"ipaddr" {>= "2.1"}
60-
"cohttp-lwt-unix" {>= "5.0.0" & < "6.0.0~"}
61-
"conduit-lwt-unix" {>= "2.0.0"}
60+
"cohttp-lwt-unix" {>= "5.0.0" & < "6.0"}
61+
"conduit-lwt-unix" {>= "2.0.0" & < "7.0"}
6262
"xml-light"
6363
"camlzip"
6464
]

0 commit comments

Comments
 (0)