diff options
author | Justin Karneges <justin@affinix.com> | 2013-01-30 18:04:45 -0800 |
---|---|---|
committer | Justin Karneges <justin@affinix.com> | 2013-01-30 18:04:45 -0800 |
commit | e250b987e90ae0aa867f3846abe02ddf6eec976e (patch) | |
tree | e7ae81d6158df74478c66b0ac0a506492ef3d42a | |
parent | c75ea0700ef944957051114cb347f8090249268d (diff) | |
download | pollymer-e250b987e90ae0aa867f3846abe02ddf6eec976e.tar pollymer-e250b987e90ae0aa867f3846abe02ddf6eec976e.tar.gz |
set DEBUG = false when minimizing
-rw-r--r-- | Makefile | 3 | ||||
-rwxr-xr-x | compile.py | 4 |
2 files changed, 3 insertions, 4 deletions
@@ -13,4 +13,5 @@ polldance-$(VERSION).js: polldance.js cp polldance.js polldance-$(VERSION).js polldance-$(VERSION).min.js: polldance-$(VERSION).js - ./compile.py polldance-$(VERSION).js > polldance-$(VERSION).min.js + sed -e "s/DEBUG = true/DEBUG = false/g" polldance-$(VERSION).js | ./compile.py > polldance-$(VERSION).min.js.tmp + mv polldance-$(VERSION).min.js.tmp polldance-$(VERSION).min.js @@ -5,9 +5,7 @@ import httplib, urllib, sys # Define the parameters for the POST request and encode them in # a URL-safe format. -file = open(sys.argv[1]) -js_code = file.read() -file.close() +js_code = sys.stdin.read() params = urllib.urlencode([ ('js_code', js_code), |