From d607a4bc923f3f4cb3a70ffa92060dc2c1ad97d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 30 Jan 2017 14:33:49 +0100 Subject: Fix compare time How the hack did I come up with that number? --- build_repo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build_repo.sh') diff --git a/build_repo.sh b/build_repo.sh index afff0dd..b452d79 100755 --- a/build_repo.sh +++ b/build_repo.sh @@ -16,7 +16,7 @@ rm -rf .turris-sdk pull_sdk() { # Update only once a day - if [ ! -e .$1-sdk-clean ] || [ $(expr $(date -u +%s) - $(stat -c %Y .$1-sdk-clean)) -gt 5184000 ]; then + if [ ! -e .$1-sdk-clean ] || [ $(expr $(date -u +%s) - $(stat -c %Y .$1-sdk-clean)) -gt 86400 ]; then rm -rf .$1-sdk-clean echo -e "\e[1;34mGetting current SDK for $1\e[0m" curl "$2" | tar -xjf - -- cgit v1.2.3