Skip to content

Commit 533786e

Browse files
committed
fix: remove references to ecsact_rtb
1 parent 39b2ca6 commit 533786e

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The Ecsact SDK repository doesn't contain very much source code, but is a great
44

55
## Getting Started
66

7-
If you want to makes changes to another ecsact repository (such as [ecsact_rtb](https://github.com/ecsact-dev/ecsact_rtb)) you may want to install the SDK with your changes. To do that you use the `DevInstall` script with the repository you want to contribute to
7+
If you want to makes changes to another ecsact repository (such as [ecsact_cli](https://github.com/ecsact-dev/ecsact_cli)) you may want to install the SDK with your changes. To do that you use the `DevInstall` script with the repository you want to contribute to
88

99
The Ecsact SDK is built with [`bazel`](https://bazel.build/). We recommend you install [bazelisk](https://bazel.build/install/bazelisk) and have it available as `bazel` in your `PATH`.
1010

CreateDeb.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ try {
1212
((Get-Content -path ./dist/DEBIAN/control -Raw) -replace '0.0.0-placeholder',"$($Version)") | Set-Content -Path ./dist/DEBIAN/control
1313
rm -rf ./dist/images
1414
rm ./dist/AppxManifest.xml
15-
rm -f ./dist/bin/ecsact_rtb.runfiles/ecsact_cli/ecsact
1615
mkdir ./dist/usr
1716
mv ./dist/bin ./dist/usr/bin
1817
mv ./dist/share ./dist/usr/share

CreateMsix.ps1

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ try {
3232
}
3333

3434
Set-ItemProperty -Path .\dist\bin\ecsact.exe -Name IsReadOnly -Value $false
35-
Set-ItemProperty -Path .\dist\bin\ecsact_rtb.exe -Name IsReadOnly -Value $false
3635
Set-ItemProperty -Path .\dist\bin\ecsact_lsp_server.exe -Name IsReadOnly -Value $false
3736

3837
& $SignToolPath sign `
@@ -41,15 +40,13 @@ try {
4140
/p $CertPasswordPlain `
4241
/tr http://timestamp.sectigo.com /td SHA256 `
4342
.\dist\bin\ecsact.exe `
44-
.\dist\bin\ecsact_rtb.exe `
4543
.\dist\bin\ecsact_lsp_server.exe
4644

4745
if(-not $?) {
4846
throw "Signing dist binaries failed with exit code ${LastExitCode}"
4947
}
5048

5149
Set-ItemProperty -Path .\dist\bin\ecsact.exe -Name IsReadOnly -Value $true
52-
Set-ItemProperty -Path .\dist\bin\ecsact_rtb.exe -Name IsReadOnly -Value $true
5350
Set-ItemProperty -Path .\dist\bin\ecsact_lsp_server.exe -Name IsReadOnly -Value $true
5451

5552
& $MakeAppxPath pack /v /o /h SHA384 /d .\dist\ /p $MsixPath

0 commit comments

Comments
 (0)