fix USBImager install-64 and Update it to version 1.0.7

pull/659/head
Itai Nelken 4 years ago committed by GitHub
parent 9d289b2fd6
commit d602caf0fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,11 +7,16 @@ function error {
exit 1
}
cd ~/Downloads || error "Failed to change directory to $HOME/Downloads!"
git clone https://gitlab.com/bztsrc/usbimager.git
cd usbimager/src/
make deb
#change version to latest each time
VER="1.0.7"
cd $HOME || error "Failed to change directory to $HOME!"
git clone https://gitlab.com/bztsrc/usbimager.git || error "Failed to clone USBImager repo!"
cd usbimager/ || error "Failed to entr usbimager repo folder!"
git checkout $VER || error "Failed to checkout version $VER!"
cd src/
make deb -j$(nproc)
cd ..
sudo dpkg -i usbimager_1.0.5-arm64.deb
sudo apt install -fy ./usbimager*arm64.deb
cd ..
rm -rf usbimager
rm -rf usbimager/

Loading…
Cancel
Save