more travis debugging

This commit is contained in:
Alan Shreve
2013-07-18 02:05:55 +01:00
parent 213eb595a6
commit 65411b54bd

View File

@@ -2,6 +2,8 @@
import os, os.path, boto.s3.connection
print os.getenv("GOPATH")
print os.getenv("GOARCH")
access_key = os.getenv("AWS_ACCESS_KEY")
secret_key = os.getenv("AWS_SECRET_KEY")
bucket = os.getenv("BUCKET")
@@ -11,6 +13,7 @@ s3 = boto.s3.connection.S3Connection(access_key, secret_key)
bucket = s3.get_bucket(bucket)
for envpath in ["NGROK", "NGROKD"]:
print envpath
file_path = os.getenv(envpath)
print file_path
dir_path, name = os.path.split(file_path)