mirror of
https://github.com/msojocs/wechat-web-devtools-linux.git
synced 2025-07-07 00:02:14 +08:00
11 lines
246 B
Bash
11 lines
246 B
Bash
#!/bin/bash
|
|
root_dir=$(cd `dirname $0`/.. && pwd -P)
|
|
cd $root_dir
|
|
export WINE=true
|
|
docker-compose up
|
|
$root_dir/tools/build-deepin.sh $@
|
|
|
|
export WINE=false
|
|
$root_dir/tools/fix-core.sh
|
|
$root_dir/tools/fix-other.sh
|
|
$root_dir/tools/build-deepin.sh $@ |