diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/dotfiles | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bin/dotfiles b/bin/dotfiles new file mode 100755 index 0000000..1cd5264 --- /dev/null +++ b/bin/dotfiles @@ -0,0 +1,19 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import os +import sys + +# Add project root directory (enable symlink, and trunk execution). +PROJECT_ROOT_DIRECTORY = os.path.abspath( + os.path.dirname(os.path.dirname(os.path.realpath(sys.argv[0])))) + +if (os.path.exists(os.path.join(PROJECT_ROOT_DIRECTORY, 'dotfiles')) + and PROJECT_ROOT_DIRECTORY not in sys.path): + sys.path.insert(0, PROJECT_ROOT_DIRECTORY) + os.putenv('PYTHONPATH', PROJECT_ROOT_DIRECTORY) + +import dotfiles + +if __name__ == '__main__': + dotfiles.cli.main() |