Commit 82fecc93 authored by Vitaly Lipatov's avatar Vitaly Lipatov

git: fix missed date detection

parent 3ee8a54d
...@@ -79,18 +79,17 @@ set_girar_host() ...@@ -79,18 +79,17 @@ set_girar_host()
_list_git_package() _list_git_package()
{ {
while [ -n "$1" ] ; do while read path date other; do
printf "%50s " $GIRARHOST:$1 printf "%60s " $GIRARHOST:$path
shift [ -n "$date" ] || { echo "[Date is missed]" ; continue ; }
date -d@$1 date -d@$date
shift
done done
} }
# TODO: make world better, please # TODO: make world better, please
list_git_package() list_git_package()
{ {
_list_git_package $(ssh $GIRARHOST find-package $1) ssh $GIRARHOST find-package $1 | _list_git_package
} }
git_commit_ignore_nothing() git_commit_ignore_nothing()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment