Clean up CI bash scripts, add docs/STYLE_GUIDE.md

This commit is contained in:
Aneesh Agrawal 2016-04-30 23:29:06 -04:00
parent a868bb2a90
commit 1e0d039511
6 changed files with 56 additions and 16 deletions

View file

@ -1,4 +1,9 @@
#!/bin/bash
diff=$(git diff -- */*/Cargo.lock)
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
diff="$(git diff -- */*/Cargo.lock)"
echo "$diff"
[[ ! $diff ]]