blob: 9ad788ece84233ea9ad6049e27519e4f2d4e6ea6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright (C) 2016-2017 Vincent Ambo <mail@tazj.in>
#
# This file is part of Kontemplate.
#
# Kontemplate is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#!/usr/bin/env fish
function get_remote_master
git ls-remote "$argv[1]" | \
grep 'refs/heads/master' | \
awk '{print $1}'
end
function list_deps
grep '"git"' -B2 kontemplate.frm | \
grep -P -o '(?<=silo: ")https://.+(?=")'
end
function diff_dep
set -l current (grep -B1 "$argv[1]" kontemplate.frm | grep -P -o '(?<=hash: ").+(?=")')
set -l remote (get_remote_master "$argv[1]")
if [ $current != $remote ]
echo "$argv[1]"
echo -e "current:\t$current"
echo -e "remote:\t\t$remote\n"
else
echo -e "$argv[1] up to date\n"
end
end
for dep in (list_deps)
diff_dep $dep
end
|