Skip to content

Instantly share code, notes, and snippets.

@rfjakob
Last active June 16, 2018 13:57
Show Gist options
  • Save rfjakob/69179a5b9e2892531e82bac2cab0869c to your computer and use it in GitHub Desktop.
Save rfjakob/69179a5b9e2892531e82bac2cab0869c to your computer and use it in GitHub Desktop.
Print gocryptfs and trezor dependency versions
#!/bin/bash
REPOS="github.com/rfjakob/gocryptfs\
github.com/xaionaro-go/cryptoWallet\
github.com/zserge/hid\
github.com/conejoninja/tesoro\
github.com/conejoninja/hid"
SRC=$(go env GOPATH)/src
for i in $REPOS
do
echo -n "$i "
git -C $SRC/$i describe --always --dirty
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment