mirror of
https://github.com/tsingui/softcenter-1.git
synced 2024-11-15 02:15:18 +00:00
24 lines
390 B
Bash
24 lines
390 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
|
||
|
MODULE=shellinabox
|
||
|
VERSION="2.0"
|
||
|
TITLE=shellinabox
|
||
|
DESCRIPTION=超强的SSH网页客户端~
|
||
|
HOME_URL=Module_shellinabox.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
|
||
|
|
||
|
# now backup
|
||
|
sh backup.sh $MODULE
|