File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ VERSION=`python -c "import json ; print(json.loads(open('chromium/manifest.json'
3737echo " Building chrome version" $VERSION
3838
3939if [ -f utils/trivial-validate.py ]; then
40- VALIDATE=" python utils/trivial-validate.py --ignoredups google --ignoredups facebook"
40+ VALIDATE=" ./ utils/trivial-validate.py --ignoredups google --ignoredups facebook"
4141elif [ -x utils/trivial-validate ] ; then
4242 # This case probably never happens
4343 VALIDATE=./utils/trivial-validate
@@ -117,7 +117,7 @@ trap 'rm -f "$pub" "$sig" "$zip"' EXIT
117117
118118# zip up the crx dir
119119cwd=$( pwd -P)
120- (cd " $dir " && python ../../utils/create_xpi.py -n " $cwd /$zip " -x " ../../.build_exclusions" .)
120+ (cd " $dir " && ../../utils/create_xpi.py -n " $cwd /$zip " -x " ../../.build_exclusions" .)
121121echo >&2 " Unsigned package has shasum: ` shasum " $cwd /$zip " ` "
122122
123123# signature
Original file line number Diff line number Diff line change 5252
5353if [ " $1 " != " --fast" ] ; then
5454 if [ -f utils/trivial-validate.py ]; then
55- VALIDATE=" python utils/trivial-validate.py --ignoredups google --ignoredups facebook"
55+ VALIDATE=" ./ utils/trivial-validate.py --ignoredups google --ignoredups facebook"
5656 elif [ -f trivial-validate.py ] ; then
5757 VALIDATE=" python trivial-validate.py --ignoredups google --ignoredups facebook"
5858 elif [ -x utils/trivial-validate ] ; then
@@ -128,7 +128,7 @@ cd src
128128rm -f " ../$XPI_NAME "
129129# zip -q -X -9r "../$XPI_NAME" . "-x@../.build_exclusions"
130130
131- python ../utils/create_xpi.py -n " ../$XPI_NAME " -x " ../.build_exclusions" " ."
131+ ../utils/create_xpi.py -n " ../$XPI_NAME " -x " ../.build_exclusions" " ."
132132
133133ret=" $? "
134134if [ " $ret " != 0 ]; then
Original file line number Diff line number Diff line change 1- #!/usr/bin/python
1+ #!/usr/bin/python2.7
22
33# Uses the Python zip implementation to create deterministic XPI's
44# Author: Yan Zhu, yan@mit.edu
Original file line number Diff line number Diff line change 1- #!/usr/bin/python
1+ #!/usr/bin/python2.7
22
33import argparse
44import sys , re , os
You can’t perform that action at this time.
0 commit comments