Subversion Repositories Kolibri OS

Rev

Rev 9383 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. import os
  2.  
  3. ### PATHS
  4.  
  5. # _tools/lib/constants.py
  6. tools_lib_constants_py = os.path.abspath(__file__)
  7.  
  8. # _tools/lib
  9. tools_lib = os.path.dirname(tools_lib_constants_py)
  10.  
  11. # _tools
  12. tools = os.path.dirname(tools_lib)
  13.  
  14. # _tools/workspace
  15. tools_workspace = os.path.join(tools, "workspace")
  16.  
  17. # _tools/cache
  18. tools_cache = os.path.join(tools, "cache")
  19.  
  20. # _tools/cache/kolibri.img
  21. tools_cache_kolibri_img = os.path.join(tools_cache, "kolibri.img")
  22.  
  23.