Compare commits

...

4 commits

Author SHA1 Message Date
35560c76b1 Update modules.py 2020-05-13 13:45:13 -05:00
01e12978bf Update README.md 2020-05-13 13:34:24 -05:00
tomGER
3634bb8b17
Archive Kosmos. 2020-05-12 20:39:30 +02:00
Nichole Mattera
1db317c18e
v16.1 - Hotfix for SDSetup 2020-05-06 06:36:43 -04:00
2 changed files with 3 additions and 2 deletions

View file

@ -71,6 +71,7 @@ def move_contents_of_folder(source, dest):
for f in files:
if os.path.isdir(os.path.join(source, f)):
mkdir(os.path.join(dest, f))
move_contents_of_folder(os.path.join(source, f), os.path.join(dest, f))
else:
shutil.move(os.path.join(source, f), dest)

View file

@ -231,9 +231,9 @@ def download_hekate_icons(module, temp_directory, kosmos_version, kosmos_build):
common.delete_path(bundle_path)
shutil.move(os.path.join(temp_directory, 'bootloader', 'res', 'icon_payload.bmp'), os.path.join(temp_directory, 'bootloader', 'res', 'icon_payload_hue.bmp'))
shutil.move(os.path.join(temp_directory, 'bootloader', 'res', 'icon_payload_custom.bmp'), os.path.join(temp_directory, 'bootloader', 'res', 'icon_payload.bmp'))
#shutil.move(os.path.join(temp_directory, 'bootloader', 'res', 'icon_payload_custom.bmp'), os.path.join(temp_directory, 'bootloader', 'res', 'icon_payload.bmp'))
shutil.move(os.path.join(temp_directory, 'bootloader', 'res', 'icon_switch.bmp'), os.path.join(temp_directory, 'bootloader', 'res', 'icon_switch_hue.bmp'))
shutil.move(os.path.join(temp_directory, 'bootloader', 'res', 'icon_switch_custom.bmp'), os.path.join(temp_directory, 'bootloader', 'res', 'icon_switch.bmp'))
#shutil.move(os.path.join(temp_directory, 'bootloader', 'res', 'icon_switch_custom.bmp'), os.path.join(temp_directory, 'bootloader', 'res', 'icon_switch.bmp'))
return get_version(module, release, 0)