github release (golang mia) debugging.

jjb/shell/github-release.sh
---------------------------
  o Temporarily disable exit-on-failure within displayCommand().
  o Allow progression toward manifestation of the original failure.
  o Shellcheck cleanups.

jjb/verify/bbsim.yaml
---------------------
  o Remove v2.9 & v2.10 job placeholders, must have misheard the request
    earlier because the need now is only for v2.11 views.

packer/provision/basebuild.sh
-----------------------------
  o shellcheck: quote $(go env GOPATH) to prevent word/path splitting.

makefiles/
----------
  o Added library makefiles/ subdirectory to support more lint targets.
  o Makefile proper will need to be updated.

Change-Id: Icc766b90ffe798fe12c0376787f2298a68babbd4
diff --git a/packer/provision/basebuild.sh b/packer/provision/basebuild.sh
index 22b8953..8e9b3e5 100644
--- a/packer/provision/basebuild.sh
+++ b/packer/provision/basebuild.sh
@@ -323,7 +323,7 @@
     # dep for go package dependencies w/versioning, version 0.5.2, adapted from:
     #  https://golang.github.io/dep/docs/installation.html#install-from-source
     go get -d -u github.com/golang/dep
-    pushd $(go env GOPATH)/src/github.com/golang/dep
+    pushd "$(go env GOPATH)/src/github.com/golang/dep"
       git checkout "0.5.2"
       go install -ldflags="-X main.version=0.5.2" ./cmd/dep
     popd
@@ -335,7 +335,7 @@
     # protoc-gen-go - Golang protbuf compiler extension for protoc (installed
     # below)
     go get -d -u github.com/golang/protobuf/protoc-gen-go
-    pushd $(go env GOPATH)/src/github.com/golang/protobuf
+    pushd "$(go env GOPATH)/src/github.com/golang/protobuf"
       git checkout "v1.3.1"
       go install ./protoc-gen-go
     popd
@@ -458,3 +458,5 @@
 
 # execute steps for all systems
 all_systems
+
+# [EOF]