15 lines
184 B
Bash
15 lines
184 B
Bash
#!/bin/bash
|
|
|
|
echo DescFile=$1
|
|
echo Push=$2
|
|
echo FossilRepository=$3
|
|
|
|
|
|
cd $3
|
|
fossil ci -M $1
|
|
|
|
# push if chkFossilPush checked in SourceCodeRep tool
|
|
if [ $2 -eq 1 ]
|
|
then
|
|
fossil push
|
|
fi |