File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 54
54
sass-spec /
55
55
56
56
# libsass-python
57
+ ._.DS_Store
57
58
build /
58
59
dist /
59
60
docs /_build
Original file line number Diff line number Diff line change 1
- from __future__ import with_statement
1
+ from __future__ import print_function , with_statement
2
2
3
3
import ast
4
4
import distutils .cmd
44
44
sources = ['pysass.c' ]
45
45
sources .extend (libsass_sources )
46
46
47
+ if not os .path .isdir ('sass2scss' ) and os .path .isdir ('.git' ):
48
+ print ('Submodules seem not initialized yet.'
49
+ 'You can initialize it by the following command:' ,
50
+ file = sys .stderr )
51
+ print ('\t git submodule update --init' , file = sys .stderr )
52
+ raise SystemExit (1 )
53
+
47
54
if sys .platform == 'win32' :
48
55
from distutils .msvc9compiler import get_build_version
49
56
vscomntools_env = 'VS{0}{1}COMNTOOLS' .format (
You can’t perform that action at this time.
0 commit comments