We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b55398 commit 0441193Copy full SHA for 0441193
1 file changed
Shell/Plugin/Install.sh
@@ -55,6 +55,13 @@ function UnPackage_tar(){
55
[ $? -ne 0 ] && echo ">>>>> Error: The software untar error" && exit 1
56
}
57
58
+### 复制文件
59
+function Package_copy(){
60
+ mkdir -p ${SoftwarePathInstall}
61
+ cp ${SoftwarePathPackage} ${SoftwarePathInstall}/${1}
62
+ [ $? -ne 0 ] && echo ">>>>> Error: The software copy error" && exit 1
63
+}
64
+
65
### 验证软件安装
66
function CheckInstalld_file() {
67
if [ ! -f ${SoftwarePathInstall}/${1} ]; then
0 commit comments