TBR: Fix bootstrap script to point to new jiri command locations.

Change-Id: Ieee00694e96297df042bdbccc02cb0bf5b2292f4
diff --git a/scripts/bootstrap_jiri b/scripts/bootstrap_jiri
index 8f00a2f..e804451 100755
--- a/scripts/bootstrap_jiri
+++ b/scripts/bootstrap_jiri
@@ -65,8 +65,8 @@
 
 # Go get the jiri source files, build the jiri binary, and copy the jiri shim
 # script from the sources.
-GOPATH="${tmp_dir}" go get -d v.io/jiri
-GOPATH="${tmp_dir}" go build -o "${bin_dir}/jiri" v.io/jiri
+GOPATH="${tmp_dir}" go get -d v.io/jiri/cmd/jiri
+GOPATH="${tmp_dir}" go build -o "${bin_dir}/jiri" v.io/jiri/cmd/jiri
 cp "${tmp_dir}/src/v.io/jiri/scripts/jiri" "${scripts_dir}/jiri"
 
 # Clean up the tmp_dir.