Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/gruntworker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gruntworker.py')
-rwxr-xr-xgruntworker.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/gruntworker.py b/gruntworker.py
index bae068e..551ccdc 100755
--- a/gruntworker.py
+++ b/gruntworker.py
@@ -4,8 +4,13 @@
from sys import exit # pylint: disable=W0622
from subprocess import check_call, check_output, DEVNULL, CalledProcessError
from shutil import rmtree
+from os.path import join as pathjoin
from datetime import datetime
+SHRINKWRAP_FILENAME = 'npm-shrinkwrap.json'
+SHRINKWRAP_DIR = 'test-infra'
+SHRINKWRAP_FILEPATH = pathjoin(SHRINKWRAP_DIR, SHRINKWRAP_FILENAME)
+
def log(*args):
now = datetime.now().replace(microsecond=0).isoformat(' ')