aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorOmari Stephens <xsdg@android.com>2013-04-17 16:35:47 -0700
committerOmari Stephens <xsdg@android.com>2013-04-17 20:58:38 -0700
commit46bdf0d2a9fd21d9979fe96f0e98fc1da8243969 (patch)
tree3ef4f5eabf396a4f553c899a49cec15507ca0c8f /scripts
parent9ca4369e1f5e000feeb4f81678e06b28f816ad06 (diff)
downloadsource.android.com-46bdf0d2a9fd21d9979fe96f0e98fc1da8243969.tar.gz
Bring TF docs up-to-date and make them useful
Includes significant re-organization and more content Bug: 8440148 Change-Id: I3df611d9eca451737b751a884c9eecac905cc799
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/micro-httpd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/micro-httpd.py b/scripts/micro-httpd.py
index 1cffa089..2292abca 100755
--- a/scripts/micro-httpd.py
+++ b/scripts/micro-httpd.py
@@ -19,7 +19,7 @@ import SocketServer
import os
-outdir = os.path.join(os.path.dirname(__file__), '..', 'out')
+outdir = os.environ.get('OUTDIR', os.path.join(os.path.dirname(__file__), '..', 'out'))
os.chdir(outdir)
PORT = int(os.environ.get('HTTP_PORT', 8080))
Handler = SimpleHTTPServer.SimpleHTTPRequestHandler