mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
[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:
parent
7d918aeef1
commit
5bae033f07
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue