Skip to content
This repository has been archived by the owner on Dec 21, 2019. It is now read-only.

Commit

Permalink
feat: Add shell script to check if dependencies are up-to-date
Browse files Browse the repository at this point in the history
  • Loading branch information
tazjin committed Jun 11, 2017
1 parent a7781b1 commit cf5e392
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions diff-deps.fish
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/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

0 comments on commit cf5e392

Please sign in to comment.