Skip to content

Commit

Permalink
Fix bug where ocamllsp binary was not put in bin dir (#8)
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Sherratt <[email protected]>
  • Loading branch information
gridbugs authored Nov 14, 2024
1 parent e113ade commit 6796009
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build-scripts/ocaml-lsp-server.1.18.0-ocaml.5.1.1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ opam install -y "ocaml-lsp-server.$OCAML_LSP_SERVER_VERSION"

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

mkdir -p "$ARCHIVE_NAME"
cp _opam/bin/ocamllsp "$ARCHIVE_NAME"
mkdir -p "$ARCHIVE_NAME/bin"
cp _opam/bin/ocamllsp "$ARCHIVE_NAME/bin"
cat > "$ARCHIVE_NAME/README.md" <<EOF
# ocaml-lsp-server binary distribution
Expand Down
4 changes: 2 additions & 2 deletions build-scripts/ocaml-lsp-server.1.19.0-ocaml.5.2.0.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ opam install -y "ocaml-lsp-server.$OCAML_LSP_SERVER_VERSION"

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

mkdir -p "$ARCHIVE_NAME"
cp _opam/bin/ocamllsp "$ARCHIVE_NAME"
mkdir -p "$ARCHIVE_NAME/bin"
cp _opam/bin/ocamllsp "$ARCHIVE_NAME/bin"
cat > "$ARCHIVE_NAME/README.md" <<EOF
# ocaml-lsp-server binary distribution
Expand Down

0 comments on commit 6796009

Please sign in to comment.