mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Fixes to kolibrios
removed 7z dependency and corrected errors.
This commit is contained in:
parent
2dcc05abac
commit
5e7dce6d82
1 changed files with 8 additions and 6 deletions
14
quickget
14
quickget
|
@ -340,7 +340,7 @@ function releases_kdeneon() {
|
|||
}
|
||||
|
||||
function releases_kolibrios() {
|
||||
echo latest-iso
|
||||
echo latest
|
||||
}
|
||||
|
||||
function releases_linuxmint(){
|
||||
|
@ -1043,12 +1043,14 @@ function get_kolibrios() {
|
|||
local URL=""
|
||||
|
||||
validate_release "releases_kolibrios"
|
||||
URL="https://builds.kolibrios.org/eng/${RELEASE}.7z"
|
||||
#URL="https://builds.kolibrios.org/eng/${RELEASE}.7z"
|
||||
ISO="kolibri.iso"
|
||||
URL="https://builds.kolibrios.org/eng/${ISO}"
|
||||
web_get "${URL}" "${VM_PATH}"
|
||||
7z e "${VM_PATH}/${RELEASE}.7z" "kolibri.iso"
|
||||
ISO="kolibrios-${RELEASE}.iso"
|
||||
mv "kolibri.iso" "${VM_PATH}/${ISO}"
|
||||
rm "${VM_PATH}/${RELEASE}.7z"
|
||||
#7z e "${VM_PATH}/${RELEASE}.7z" "kolibri.iso"
|
||||
#ISO="kolibrios-${RELEASE}.iso"
|
||||
#mv "kolibri.iso" "${VM_PATH}/${ISO}"
|
||||
#rm "${VM_PATH}/${RELEASE}.7z"
|
||||
make_vm_config "${ISO}"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue