mirror of
https://github.com/reactos/buildbot_config.git
synced 2024-11-23 03:39:51 +00:00
730b11c26d
The directory name has been changed to reflect that.
12 lines
247 B
Bash
Executable File
12 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
# ReactOS BuildBot Build Scripts
|
|
# build_reactos - Build a ReactOS module
|
|
#
|
|
# Parameters - The module(s) to be built, e.g. "bootcd". Directly passed to ninja.
|
|
source ../../config.inc
|
|
|
|
$TIME bash -c "(
|
|
cd $ROS_OUTPUT
|
|
ninja -k 0 $@
|
|
)"
|