Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # excerpt from deploy script
  2. METEORVERSION="$(meteor --version)"
  3. GITVERSION="$(git --version)"
  4. YARNVERSION="$(yarn --version)"
  5. NODEJSVERSION="$(node --version)"
  6. echo "${GITVERSION}"
  7. echo "${METEORVERSION}"
  8. echo "${YARNVERSION}"
  9. echo "${NODEJSVERSION}"
  10. if [ "$NODEJSVERSION" != "v6.0.0" ]; then
  11. echo "Exiting due to wrong NodeJS version. Expected: v6.0.0"
  12. exit
  13. fi
  14. # ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement