[scripts - docker] Fix build instructions

Current instruction to get the installer out the container will fail
with bash complaining about cp being a binary. Then would fail too
because subsurface-installer.exe doesn't exist any more.

Proposed instruction should work.

Signed-off-by: Salvador Cuñat <salvador.cunat@gmail.com>
This commit is contained in:
Salvador Cuñat 2024-01-08 22:54:22 +01:00 committed by Dirk Hohndel
parent 7d918aeef1
commit 5bae033f07

View file

@ -23,7 +23,7 @@ docker exec -t mybuilder bash subsurface/.github/workflows/scripts/windows-in-co
To get the built binary out of the container
```
docker exec -t mybuilder bash cp /subsurface-installer.exe /win/win32
docker exec -t mybuilder bash -c "cp /subsurface-*-installer.exe /win/win32"
```
Which will copy the installer into the win32 folder which will be a sibling of the subsurface folder.