blob: a3e5d72ebb442f00e8fd703257100c04ed49dff5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#!/usr/bin/env python
"""Nikola main script."""
from __future__ import print_function
import os
import sys
# LIBDIR trick start (marker for removal on platforms that don't need it)
libdir = '@LIBDIR@'
# Two cases:
if libdir != '@' 'LIBDIR' '@':
# Changed by our distutils hook, then use the given path.
if not os.path.isabs(libdir):
libdir = os.path.join(os.path.dirname(
os.path.realpath(__file__)), libdir)
libdir = os.path.abspath(libdir)
else:
# Unchanged, running from checkout,
# use the parent directory, the nikola package ought be there.
libdir = os.path.join(os.path.dirname(__file__), "..")
sys.path.insert(0, libdir)
if "PYTHONPATH" not in os.environ:
os.environ["PYTHONPATH"] = libdir
else:
os.environ["PYTHONPATH"] = os.environ["PYTHONPATH"] + ":" + libdir
# LIBDIR trick end (marker for removal on platforms that don't need it)
from nikola import main
if __name__ == "__main__":
sys.exit(main.main(sys.argv[1:]))
|