mirror of
https://github.com/HackPlan/atom-shell.git
synced 2026-01-13 08:49:53 +08:00
10 lines
175 B
Python
Executable File
10 lines
175 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
"""Prints the absolute path of the root of atom-shell's source tree.
|
|
"""
|
|
|
|
|
|
print os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|