mirror of
https://github.com/HackPlan/atom-shell.git
synced 2026-03-27 02:24:18 +08:00
The source_root was wrong computed
Using 'SOURCE_ROOT = os.path.dirname(os.path.dirname(__file__))' leads to an empty string if the path is relative.
This commit is contained in:
@@ -7,7 +7,7 @@ import sys
|
||||
|
||||
|
||||
CONFIGURATIONS = ['Release', 'Debug']
|
||||
SOURCE_ROOT = os.path.dirname(os.path.dirname(__file__))
|
||||
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
||||
|
||||
|
||||
def main():
|
||||
|
||||
Reference in New Issue
Block a user