diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-17 21:49:48 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-17 21:49:48 -0400 |
commit | 1eed703c1b7287a71347d9ad2d05f2a0a3747b11 (patch) | |
tree | d8d66eebc0c57ff35c75423a06243711c4407c88 /yf-update | |
parent | 88472049c1e8ccd64f355eed2ce624954539944d (diff) | |
parent | a3f0c2ac22109077ab25c61e2c3a9b5c332d4d50 (diff) |
Merge branch 'master' into lukeshu/xbs
Conflicts:
get-repos
yf-update
Diffstat (limited to 'yf-update')
-rwxr-xr-x | yf-update | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/yf-update b/yf-update deleted file mode 100755 index ee5d3eb..0000000 --- a/yf-update +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -source "$(dirname "$(readlink -e "$0")")/local_config" -source "$(dirname "$(readlink -e "$0")")/config" -source "$(dirname "$(readlink -e "$0")")/libremessages" - -blacklist_mtime=$(printf "%.0f" $(find ${blacklist} -printf "%T@")) -last_bl_mtime=$(< "$(dirname "$(readlink -e "$0")")/yftime") - -if [ $blacklist_mtime -gt $last_bl_mtime ]; then - pushd "$(dirname "$(readlink -e "$0")")/yf" - makepkg -f - find . -name "*${PKGEXT}" -exec mv {} ${STAGING}/libre \; - popd - echo ${blacklist_mtime} > "$(dirname "$(readlink -e "$0")")/yftime" - msg2 "built and staged" -else - msg2 "nothing to do" -fi |