aboutsummaryrefslogtreecommitdiff
path: root/openembedded-lkft
diff options
context:
space:
mode:
authorMilosz Wasilewski <milosz.wasilewski@linaro.org>2017-06-22 17:24:33 +0100
committerFathi Boudra <fathi.boudra@linaro.org>2017-06-22 16:30:16 +0000
commitc7bfe444a5682fd90a5294dc47168110dc478ffb (patch)
tree95e3f8a2ac775ac7a09dd02ee6fd82a6d6cb7b62 /openembedded-lkft
parentf2665a432671eefbcf9599ffd06f03fdc66cf072 (diff)
lkft: openembedded-lkft: fix incorrect condition
Use git describe as version whenever it's available Change-Id: I7ae9572638b7f6d1d940caa0421a6051c3b615cf Signed-off-by: Milosz Wasilewski <milosz.wasilewski@linaro.org>
Diffstat (limited to 'openembedded-lkft')
-rwxr-xr-xopenembedded-lkft/submit_for_testing.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/openembedded-lkft/submit_for_testing.sh b/openembedded-lkft/submit_for_testing.sh
index d9c0e23ee9..71f4ad3a05 100755
--- a/openembedded-lkft/submit_for_testing.sh
+++ b/openembedded-lkft/submit_for_testing.sh
@@ -4,7 +4,7 @@ set -e
export KSELFTEST_SKIPLIST=""
-if [ -z "${KERNEL_DESCRIBE}" ]; then
+if [ ! -z "${KERNEL_DESCRIBE}" ]; then
export QA_BUILD_VERSION=${KERNEL_DESCRIBE}
else
export QA_BUILD_VERSION=${KERNEL_COMMIT:0:12}