mirror of
https://github.com/reactos/buildbot_config.git
synced 2024-11-27 05:30:39 +00:00
8 lines
296 B
Plaintext
8 lines
296 B
Plaintext
|
#!/bin/bash
|
||
|
# ReactOS BuildBot Build Scripts
|
||
|
# get_suffix - Get the combined revision and upload suffix (= the important part of the filename) for a BuildBot SetPropertyFromCommand call.
|
||
|
source ../../config.inc
|
||
|
|
||
|
REVISION_SUFFIX=`cat revision_suffix`
|
||
|
echo "$REVISION_SUFFIX-$UPLOAD_SUFFIX"
|