Skip to content

Commit f04bc9f

Browse files
committed
修复安装应用脚本找不到 shell 脚本路径的问题
1 parent 230a31c commit f04bc9f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

macOs/设备工具/1. 安装应用.command

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [[ ! -d "${shellDirPath}" ]]; then
66
exit 1
77
fi
88

9-
shellFilePath="${shellDirPath}/device-tools/InstallApk.sh"
9+
shellFilePath="${shellDirPath}/device-tools/InstallApp.sh"
1010

1111
if [[ ! -f "${shellFilePath}" ]]; then
1212
echo "❌ 没找到 shell 文件,请检查 ${shellFilePath} 路径是否正确"

windows/设备工具/1. 安装应用.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set "currentDirPath=%~dp0"
1414
pushd "!currentDirPath!\..\.."
1515
set "tempDirPath=%CD%"
1616
popd
17-
set "shellFilePath=!tempDirPath!\shell\device-tools\InstallApk.sh"
17+
set "shellFilePath=!tempDirPath!\shell\device-tools\InstallApp.sh"
1818

1919
if not exist "!shellFilePath!" (
2020
echo ❌ 没找到 shell 文件,请检查 !shellFilePath! 路径是否正确

0 commit comments

Comments
 (0)