Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
CppCXY committed Oct 2, 2024
1 parent 457056b commit 7e234a1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
tar -czf lua-language-server-linux-aarch64.tar.gz -C lua-language-server-linux-arm64 .
chmod +x lua-language-server-linux-musl/lua-language-server
tar -czf lua-language-server-linux-musl.tar.gz -C lua-language-server-linux-musl .
chmod +x lua-language-server-linux-bsd/lua-language-server
chmod +x lua-language-server-darwin-x64/lua-language-server
tar -czf lua-language-server-darwin-x64.tar.gz -C lua-language-server-darwin-x64 .
chmod +x lua-language-server-darwin-arm64/lua-language-server
tar -czf lua-language-server-darwin-arm64.tar.gz -C lua-language-server-darwin-arm64 .
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,13 @@ cargo build --release -p luals

To publish the project, run:

On Windows:
```bash
./publish/WinPublish.ps1
```

On other systems:
```bash
./publish/UnixPublish.sh
```
will package the compiled files and related resource files into the `dist` directory
2 changes: 1 addition & 1 deletion crates/basic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ cc = "1.0"
glob = "0.3.0"

[features]
default = ["luajit"]
default = []
no_format = []
luajit = []

0 comments on commit 7e234a1

Please sign in to comment.