[WS] Use lib/build.py to download kolibri.img

git-svn-id: svn://kolibrios.org@9390 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2021-12-04 12:07:06 +00:00
parent a68941be35
commit 23fe7cf9ee
3 changed files with 13 additions and 15 deletions

View File

@@ -25,8 +25,6 @@ def create_workspace_script(name, script_to_execute):
log("Done")
if __name__ == "__main__":
# Create _tools/cache folder if not exist
os.makedirs(tools_cache, exist_ok = True)
# Create (in current directory) scripts that execute
# the same named scripts from _tools/workspace
tools_workspace_run_py = os.path.join(tools_workspace, "run.py")
@@ -36,6 +34,3 @@ if __name__ == "__main__":
# Initalize tup here
# TODO: Do anything if tup doesn't exist
os.system("tup init")
# Download IMG to _tools/cache
img_url = "http://builds.kolibrios.org/eng/data/data/kolibri.img"
download(img_url, tools_cache_kolibri_img, skip_exist = True)