Skip to content

Commit 6796009

Browse files
authored
Fix bug where ocamllsp binary was not put in bin dir (#8)
Signed-off-by: Stephen Sherratt <[email protected]>
1 parent e113ade commit 6796009

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build-scripts/ocaml-lsp-server.1.18.0-ocaml.5.1.1.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ opam install -y "ocaml-lsp-server.$OCAML_LSP_SERVER_VERSION"
1818

1919
ARCHIVE_NAME="ocaml-lsp-server.$OCAML_LSP_SERVER_VERSION+binary-ocaml-$OCAML_VERSION-built-$TAG-$TARGET"
2020

21-
mkdir -p "$ARCHIVE_NAME"
22-
cp _opam/bin/ocamllsp "$ARCHIVE_NAME"
21+
mkdir -p "$ARCHIVE_NAME/bin"
22+
cp _opam/bin/ocamllsp "$ARCHIVE_NAME/bin"
2323
cat > "$ARCHIVE_NAME/README.md" <<EOF
2424
# ocaml-lsp-server binary distribution
2525

build-scripts/ocaml-lsp-server.1.19.0-ocaml.5.2.0.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ opam install -y "ocaml-lsp-server.$OCAML_LSP_SERVER_VERSION"
1818

1919
ARCHIVE_NAME="ocaml-lsp-server.$OCAML_LSP_SERVER_VERSION+binary-ocaml-$OCAML_VERSION-built-$TAG-$TARGET"
2020

21-
mkdir -p "$ARCHIVE_NAME"
22-
cp _opam/bin/ocamllsp "$ARCHIVE_NAME"
21+
mkdir -p "$ARCHIVE_NAME/bin"
22+
cp _opam/bin/ocamllsp "$ARCHIVE_NAME/bin"
2323
cat > "$ARCHIVE_NAME/README.md" <<EOF
2424
# ocaml-lsp-server binary distribution
2525

0 commit comments

Comments
 (0)