Skip to content

Commit 149588a

Browse files
authored
Updated latest release example urls
1 parent 2659d3f commit 149588a

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

docs/Adding pluginval to CI.md

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,34 +17,27 @@ In these examples the following is assumed:
1717

1818
##### macOS
1919
```sh
20-
$ curl -L "https://github.com/Tracktion/pluginval/releases/download/latest_release/pluginval_macOS.zip" -o pluginval.zip
20+
$ curl -L "https://github.com/Tracktion/pluginval/releases/latest/download/pluginval_macOS.zip" -o pluginval.zip
2121
$ unzip pluginval
2222
$ pluginval.app/Contents/MacOS/pluginval --validate-in-process --output-dir "./bin" --validate "<path_to_plugin>" || exit 1
2323
```
2424

2525
##### Linux
2626
```sh
27-
$ curl -L "https://github.com/Tracktion/pluginval/releases/download/latest_release/pluginval_Linux.zip" -o pluginval.zip
27+
$ curl -L "https://github.com/Tracktion/pluginval/releases/latest/download/pluginval_Linux.zip" -o pluginval.zip
2828
$ unzip pluginval
2929
$ ./pluginval --validate-in-process --output-dir "./bin" --validate "<path_to_plugin>" || exit 1
3030
```
3131

3232
##### Windows
3333
```sh
34-
> powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest https://github.com/Tracktion/pluginval/releases/download/latest_release/pluginval_Windows.zip -OutFile pluginval.zip"
34+
> powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest https://github.com/Tracktion/pluginval/releases/latest/download/pluginval_Windows.zip -OutFile pluginval.zip"
3535
> powershell -Command "Expand-Archive pluginval.zip -DestinationPath ."
3636
> pluginval.exe --validate-in-process --output-dir "./bin" --validate "<path_to_plugin>"
3737
> if %ERRORLEVEL% neq 0 exit /b 1
3838
```
3939
40-
*Alternatively you can use these URL for each of the platforms:*
41-
```
42-
https://github.com/Tracktion/pluginval/releases/latest/download/pluginval_macOS.zip
43-
https://github.com/Tracktion/pluginval/releases/latest/download/pluginval_Linux.zip
44-
https://github.com/Tracktion/pluginval/releases/latest/download/pluginval_Windows.zip
45-
```
46-
4740
*Or install via Chocolatey on Windows*
4841
```sh
4942
> choco install pluginval
50-
```
43+
```

0 commit comments

Comments
 (0)