打包脚本集中管理
This commit is contained in:
22
shell/move.sh
Normal file
22
shell/move.sh
Normal file
@@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
Type=$1
|
||||
Prj=$2
|
||||
Deploy=$3
|
||||
|
||||
case "$Type" in
|
||||
web)
|
||||
cp -r $Prj/dist/* $Deploy
|
||||
;;
|
||||
web)
|
||||
cp -r $Prj/dist/build/h5/* $Deploy
|
||||
;;
|
||||
web)
|
||||
cp -r $Prj/dist/build/mp-weixin/* $Deploy
|
||||
;;
|
||||
*)
|
||||
echo $"Usage: $0 (web|wxwork|mp)"
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit $?
|
||||
exit $RETVAL
|
||||
13
shell/update.sh
Normal file
13
shell/update.sh
Normal file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/expect
|
||||
|
||||
set Name [lindex $argv 0]
|
||||
set Prj [lindex $argv 1]
|
||||
puts "更新$Name"
|
||||
cd $Prj
|
||||
spawn git pull
|
||||
expect "Username"
|
||||
send "aixianling\r"
|
||||
expect "Password"
|
||||
send "axl123.0\r"
|
||||
interact
|
||||
cd ..
|
||||
Reference in New Issue
Block a user