summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuild-nss.py18
1 files changed, 14 insertions, 4 deletions
diff --git a/build-nss.py b/build-nss.py
index 1eb0208..0f72b03 100755
--- a/build-nss.py
+++ b/build-nss.py
@@ -1,10 +1,20 @@
-#!/usr/bin/python
-
+#!/usr/bin/env python
+
+# vim: expandtab tabstop=4 shiftwidth=4 softtabstop=4
+# -*- coding: utf-8 -*-
+
import sys
import os
import argparse
import json
import build_functions
+import logging
+import re
+import subprocess
+import commands
+import shutil
+import git
+import distutils.dir_util
print os.environ.get("USER")
#######################################################
@@ -68,8 +78,8 @@ parser.add_argument('-sc', '--skipcopy',
default=True,
help='skip the copy portion of the program. [default=True] ')
-parser.add_argument('-sw', '--skipwget',
- action="store_true",
+parser.add_argument('-sw', '--skipwget',
+ action="store_true",
dest="skipWget",
default=True,
help='skip the wget portion of the program. [default=True] ')