]> code.ossystems Code Review - openembedded-core.git/commitdiff
scripts/sstate-cache-management.sh: fix return value by adding exit 0
authorHenning Heinold <heinold@inf.fu-berlin.de>
Fri, 5 Apr 2013 07:22:58 +0000 (09:22 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 5 Apr 2013 10:13:08 +0000 (11:13 +0100)
* usefull for jenkins jobs, which will otherwise fail
  because 1 was returned

Signed-off-by: Henning Heinold <heinold@inf.fu-berlin.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/sstate-cache-management.sh

index 24384ef89e7013b8330973aee1b6fde43a47f6f8..e2baf17d218afd5c3e2acf670b2223907b9013d4 100755 (executable)
@@ -422,4 +422,4 @@ done
 [ -n "$stamps" ] && rm_by_stamps
 [ -z "$rm_duplicated" -a -z "$stamps" ] && \
     echo "What do you want to do?"
-
+exit 0