mirror of
https://github.com/HackPlan/atom-shell.git
synced 2026-04-05 16:51:15 +08:00
11 lines
217 B
Python
Executable File
11 lines
217 B
Python
Executable File
#!/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)
|