cros_sdk: do not pass in bogus DEPOT_TOOLS

If there is no depot_tools in $PATH, we don't want to pass in the
string "None" as it'll mess up mounting and spew:
	mount: special device None does not exist

Re-add the None check that was dropped during the gerrit testing
merge in 9c13a67732096486d7fa37ed638e92f0c99a4721.

BUG=None
TEST=`cros_sdk` works w/depot_tools in PATH
TEST=`cros_sdk` works w/out depot_tools in PATH

Change-Id: Ie82d2c01b29d726358c16697e34e1d4b117d8386
Reviewed-on: https://chromium-review.googlesource.com/184340
Reviewed-by: Matt Tennant <mtennant@chromium.org>
Commit-Queue: Mike Frysinger <vapier@chromium.org>
Tested-by: Mike Frysinger <vapier@chromium.org>
diff --git a/scripts/cros_sdk.py b/scripts/cros_sdk.py
index ac23d44..eb57131 100644
--- a/scripts/cros_sdk.py
+++ b/scripts/cros_sdk.py
@@ -198,7 +198,10 @@
 
   # Pass in the path to the depot_tools so that users can access them from
   # within the chroot.
-  cmd += ['DEPOT_TOOLS=%s' % osutils.FindDepotTools()]
+  depot_tools = osutils.FindDepotTools()
+  if depot_tools:
+    cmd += ['DEPOT_TOOLS=%s' % depot_tools]
+
   return cmd