mirror of https://github.com/nodejs/node.git
Better way of getting rid of symlinks
Windows, especially msysgit, doesn't like 'empull/22966/head
parent
e85733a80b
commit
3c3d1d31c5
|
@ -31,7 +31,13 @@
|
|||
# char arrays. It is used for embedded JavaScript code in the V8
|
||||
# library.
|
||||
|
||||
import os, re, sys, string
|
||||
import os
|
||||
from os.path import dirname
|
||||
import re
|
||||
import sys
|
||||
import string
|
||||
|
||||
sys.path.append(dirname(__file__) + "/../deps/v8/tools");
|
||||
import jsmin
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
import sys
|
||||
sys.path.append("../deps/v8/tools")
|
||||
import jsmin
|
|
@ -40,9 +40,10 @@ import sys
|
|||
import tempfile
|
||||
import time
|
||||
import threading
|
||||
import utils
|
||||
from Queue import Queue, Empty
|
||||
|
||||
sys.path.append(dirname(__file__) + "/../deps/v8/tools");
|
||||
import utils
|
||||
|
||||
VERBOSE = False
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
../deps/v8/tools/utils.py
|
Loading…
Reference in New Issue