manu7irl / klipper-DWC2-installer

to streamline the install or upgrade of KLIPPER & DWC2 front-end for it. With these 2 together no need to use octoprint. I run mine on orangepi zero with H2+ CPU 512MB and it works nicely.
GNU General Public License v3.0
55 stars 13 forks source link

Cant install DWC2 #16

Open blanosko opened 3 years ago

blanosko commented 3 years ago

Every time I try to install DWC I got this:

Capture

Is there something I can do about it?

Thanks

asovetov commented 3 years ago

confirm but gzip: ./fonts/materialdesignicons-webfont.4187121a.woff2 already exists

milosh-dev commented 2 years ago

On line 491 replace unzip *.zip && for f in $(find . | grep '.gz'); do gunzip ${f}; done

with unzip -o *.zip && for f in $(find . | grep '.gz'); do gunzip -f ${f}; done

to force overwriting existing files.