19 lines
220 B
Bash
19 lines
220 B
Bash
#!/bin/bash
|
|
|
|
echo FossilRepository=$1
|
|
echo GitRepository=$2
|
|
echo GitExe=$3
|
|
echo DescFile=$4
|
|
#echo DevPath=$5
|
|
echo
|
|
echo
|
|
echo LVCL repository
|
|
echo ---------------
|
|
|
|
cd $2
|
|
cd ../LVCL
|
|
$3 add .
|
|
$3 commit -a --file=$4
|
|
$3 push
|
|
|