mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-12-23 08:47:50 +00:00
* chore: fix test scripts and update test documents * docs: redirect developer who want to build and test to the contributing guide * dev: change wording
8 lines
294 B
PowerShell
8 lines
294 B
PowerShell
$InstallPath = ".\editors\vscode\out"
|
|
if (-Not (Test-Path $InstallPath)) {
|
|
New-Item -ItemType Directory $InstallPath
|
|
}
|
|
|
|
cargo build --release --bin tinymist
|
|
Copy-Item -Path ".\target\release\tinymist.exe" -Destination "$InstallPath\tinymist.exe" -Force
|
|
cargo insta test -p tests --accept
|