mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-07 21:05:21 +08:00
2b20b27b0d
* [document] Fix the automatically generated document URL * [docs] Format all documents
19 lines
634 B
Markdown
19 lines
634 B
Markdown
# vcpkg_execute_required_process_repeat
|
|
|
|
The latest version of this document lives in the [vcpkg repo](https://github.com/Microsoft/vcpkg/blob/master/docs/maintainers/vcpkg_execute_required_process_repeat.md).
|
|
|
|
Execute a process until the command succeeds, or until the COUNT is reached.
|
|
|
|
## Usage
|
|
```cmake
|
|
vcpkg_execute_required_process_repeat(
|
|
COUNT <num>
|
|
COMMAND <cmd> [<arguments>]
|
|
WORKING_DIRECTORY <directory>
|
|
LOGNAME <name>
|
|
)
|
|
```
|
|
|
|
## Source
|
|
[scripts/cmake/vcpkg\_execute\_required\_process\_repeat.cmake](https://github.com/Microsoft/vcpkg/blob/master/scripts/cmake/vcpkg_execute_required_process_repeat.cmake)
|