mirror of
https://github.com/tsingui/softcenter-1.git
synced 2024-11-15 02:15:18 +00:00
23 lines
387 B
Bash
23 lines
387 B
Bash
|
#!/bin/sh
|
|||
|
|
|||
|
MODULE="mdial"
|
|||
|
VERSION="1.3"
|
|||
|
TITLE="单线多拨"
|
|||
|
DESCRIPTION="pppoe单线多拨,带宽提升神器!"
|
|||
|
HOME_URL="Module_mdial.asp"
|
|||
|
|
|||
|
# Check and include base
|
|||
|
DIR="$( cd "$( dirname "$BASH_SOURCE[0]" )" && pwd )"
|
|||
|
|
|||
|
# now include build_base.sh
|
|||
|
. $DIR/../softcenter/build_base.sh
|
|||
|
|
|||
|
# change to module directory
|
|||
|
cd $DIR
|
|||
|
|
|||
|
# do something here
|
|||
|
|
|||
|
do_build_result
|
|||
|
|
|||
|
sh backup.sh $MODULE
|