blob: c7c343b08f90ca3d4505c7aa0a6ef87a19dbe261 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!bin/sh
read -r -d '' msg << TIPS
\e[1;33m====================================\e[0m\n
-----------更新开发者工具-----------
\n
当提示有更新时,可以使用以下方法更新:
\n
\n
- 进入/opt/wechat_web_devtools/执行\e[1m./bin/update_package_nw.sh\e[0m
\n
\n
- 等待该软件包维护者更新版本。可到以下地址反馈:
\n
---github https://github.com/levinit/aur-pkgbuilds
\n
---AURsite https://aur.archlinux.org/packages/wechat_web_devtools
\n
\n
- 直接点击安装,但安装需要注意:
\n
1. 确认安装到~/.wine/drive_c/Program Files (x86)/Tencent/微信web开发者工具路径下;
\n
2. 安装完成时去掉打开开发者工具项前面的勾。
\n
\n
-----------wcc和wcsc编译问题-----------
\n
进入/opt/wechat_web_devtools/,执行以下命令,让工具重新生成wcc和wcsc。
\n
提示:该操作将删除开发者工具的配置文件,所有工程和登录信息会消失。
\n
\e[1m ./bin/wxdt uninstall \e[0m
\n
\e[1m ./bin/wxdt install \e[0m
\n
\n
-----------更多内容-----------
\n向项目维护者反馈:\e[1m https://github.com/cytle/wechat_web_devtools \e[0m
\n
\e[1;33m====================================\e[0m
TIPS
post_install(){
/opt/wechat_web_devtools/bin/wxdt install
echo -e $msg
cp /root/.local/share/applications/wechat_dev_tools.desktop /usr/share/applications/
}
post_upgrade(){
echo -e $msg
cp /root/.local/share/applications/wechat_dev_tools.desktop /usr/share/applications/
}
|