diff options
author | Petr Mrázek <peterix@gmail.com> | 2019-09-17 01:21:00 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2019-09-17 01:22:00 +0200 |
commit | 7bb23b414207aa2620b3cf7d00bb46338404f61e (patch) | |
tree | 8fa463051e2e81377618dca412293aff2ccfdaf1 | |
parent | b420f4bafba2baaaa977f0259ebf652da45483ac (diff) | |
download | PrismLauncher-7bb23b414207aa2620b3cf7d00bb46338404f61e.tar.gz PrismLauncher-7bb23b414207aa2620b3cf7d00bb46338404f61e.tar.bz2 PrismLauncher-7bb23b414207aa2620b3cf7d00bb46338404f61e.zip |
NOISSUE add some escaping to make the tc version print actually do something
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0bab2955..925dd772 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -77,7 +77,7 @@ set(MultiMC_RELEASE_VERSION_NAME "${MultiMC_VERSION_MAJOR}.${MultiMC_VERSION_MIN #### Custom target to just print the version. add_custom_target(version echo "Version: ${MultiMC_RELEASE_VERSION_NAME}") -add_custom_target(tcversion echo "##teamcity[setParameter name='env.MULTIMC_VERSION' value='${MultiMC_RELEASE_VERSION_NAME}']") +add_custom_target(tcversion echo "\\#\\#teamcity[setParameter name='env.MULTIMC_VERSION' value='${MultiMC_RELEASE_VERSION_NAME}']") ################################ 3rd Party Libs ################################ |