Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc202ab9 authored by Romain Hunault's avatar Romain Hunault 🚴🏻
Browse files

Merge branch 'recovery-fix' into 'master'

Fix recovery file name

See merge request !15
parents b9ad0e78 37d12560
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -246,9 +246,9 @@ if [ -n "${BRANCH_NAME}" ] && [ -n "${DEVICE}" ]; then
	
	if [ "$RECOVERY_IMG" = true ]; then
	  if [ -f "recovery.img" ]; then
	    cp -a recovery.img "$ZIP_DIR/$zipsubdir/recovery-${build%.*}img"
	    cp -a recovery.img "$ZIP_DIR/$zipsubdir/recovery-${build%.*}.img"
	  else
	    cp -a boot.img "$ZIP_DIR/$zipsubdir/recovery-${build%.*}img"
	    cp -a boot.img "$ZIP_DIR/$zipsubdir/recovery-${build%.*}.img"
	  fi
	fi
      done