11 lines
216 B
Batchfile
11 lines
216 B
Batchfile
|
|
@echo off
|
||
|
|
|
||
|
|
set TOOLCHAIN_PATH=.\win
|
||
|
|
set HAP_PATH=..\jinan
|
||
|
|
|
||
|
|
cd %TOOLCHAIN_PATH%
|
||
|
|
.\hdc.exe uninstall com.oh.dts
|
||
|
|
echo "uninstall success"
|
||
|
|
.\hdc.exe install -r %HAP_PATH%\entry-default-signed.hap
|
||
|
|
echo "all success"
|
||
|
|
pause
|