msojocs a603376125 弱化对宿主环境的要求;
更新赞赏支持名单
2022-03-16 16:01:49 +08:00

13 lines
441 B
Bash
Executable File

#!/bin/bash
set -e
root_dir=$(cd `dirname $0`/.. && pwd -P)
a=$1
if [ "$a" == '1' ];then
rm -rf "$root_dir/package.nw/core.wxvpkg.ext"
node tools/wxvpkg_unpack.js "$root_dir/package.nw/core.wxvpkg" "$root_dir/package.nw/core.wxvpkg.ext"
else
node tools/wxvpkg_pack.js package.nw/core.wxvpkg.ext package.nw/core.wxvpkg
rm -rf ~/.config/wechat_devtools/WeappCache
rm -rf ~/.config/wechat_devtools/WeappVendor
bin/wechat-devtools
fi