Then check the source integrity of the latest release:
- tag="`git describe --abbrev=0 --tags`"
- git tag -v $tag && git checkout $tag
+ git log --show-signature -n 1
Save the metadot repository anywhere but make sure it's available in your `$PATH`.
I'm my config I use `~/apps/metadot`.
elif [ "$OPT" == "ls" ]; then
ls -1 $MODULES
elif [ "$OPT" == "version" ]; then
- ( cd $DOT && git log -n 1 )
+ ( cd $DOT && git log --show-signature -n 1 )
elif [ "$OPT" == "update" ]; then
if [ -d "$DOT/.git" ]; then
( cd $DOT && git pull origin master && git submodule update --init --recursive )