mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
6 lines
228 B
Bash
Executable File
6 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
travis=$(cat .travis.yml | grep '^go:' | sed 's/^go: \([0-9]*\.[0-9]*\)\(\.[0-9]*\)\{0,1\}$/\1/')
|
|
godep=$(cat Godeps/Godeps.json | grep 'GoVersion' | sed 's/.*"go\(.*\)".*$/\1/')
|
|
diff <(echo $travis) <(echo $godep)
|