electron/tools/mac/source_root.py

11 lines
217 B
Python
Raw Normal View History

2013-06-19 13:31:57 +00:00
#!/usr/bin/env python
import os
"""Prints the absolute path of the root of atom-shell's source tree.
"""
relative_source_root = os.path.join(__file__, '..', '..', '..')
print os.path.abspath(relative_source_root)