diff options
author | 2024-02-14 10:09:27 +0000 | |
---|---|---|
committer | 2024-02-14 10:17:14 +0000 | |
commit | 7655f39e0cacf7b8a9d637703525ad1029db2053 (patch) | |
tree | 88b0922d66440ba196fa98685caf0c793783904c | |
parent | eeb8e3a0f55553bc1d3fd2769107399687a39a0e (diff) |
fix(core): Lower amount of TREX cores for external
Signed-off-by: Peter Mikus <peter.mikus@protonmail.ch>
Change-Id: Ic27f46876a93cc01d5f14bbefe0dccd84ab41027
(cherry picked from commit ce024124889d82370718293662fb8aa005b79155)
-rw-r--r-- | resources/libraries/bash/function/common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/bash/function/common.sh b/resources/libraries/bash/function/common.sh index e08cc25bd0..83886497ea 100644 --- a/resources/libraries/bash/function/common.sh +++ b/resources/libraries/bash/function/common.sh @@ -1355,7 +1355,7 @@ function set_environment_variables () { export TREX_CORE_COUNT=14 ;; *"2n-x-"* | *"3n-x-"* ) - export TREX_CORE_COUNT=3 + export TREX_CORE_COUNT=2 ;; esac } |