Fix KernelCmdlineDescriptor type error in kotlin 1.4
also: add pull.py to pull boot and vbmeta from device upgrade to kotlin 1.4.20for/win
parent
30a5a0cbad
commit
9e30b56015
@ -0,0 +1,16 @@
|
||||
#! /usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
# vim:fenc=utf-8
|
||||
#
|
||||
import subprocess
|
||||
|
||||
def run(cmd):
|
||||
print(cmd)
|
||||
subprocess.check_call(cmd, shell = True)
|
||||
|
||||
run("touch vbmeta.img")
|
||||
run("gradle pull")
|
||||
run("touch boot.img")
|
||||
run("gradle pull")
|
||||
run("gradle unpack")
|
||||
|
Loading…
Reference in New Issue