diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-01-20 20:28:42 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-01-20 20:28:42 -0500 |
commit | 2b2f43c2753f00cdfaba0ddc35f7cdc5924cb97b (patch) | |
tree | a85bb4e7084e3353fc8d1462b35b229b7b5a7874 /etc/phpshellsessions/cvssync | |
parent | 6b1437ca75e5fbb3d28f6121ae4153471b91fd86 (diff) | |
download | pfsense-2b2f43c2753f00cdfaba0ddc35f7cdc5924cb97b.zip pfsense-2b2f43c2753f00cdfaba0ddc35f7cdc5924cb97b.tar.gz |
Add missing ;
Diffstat (limited to 'etc/phpshellsessions/cvssync')
-rw-r--r-- | etc/phpshellsessions/cvssync | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/phpshellsessions/cvssync b/etc/phpshellsessions/cvssync index f89ae3a..0800c86 100644 --- a/etc/phpshellsessions/cvssync +++ b/etc/phpshellsessions/cvssync @@ -107,7 +107,7 @@ if(is_dir("$CODIR/mainline")) { if($branch == "master") { exec("cd $CODIR/mainline && git checkout master"); } else { - $current_branch=`git branch | grep $BRANCHTAG` + $current_branch=`git branch | grep $BRANCHTAG`; if($current_branch == "") exec("cd $CODIR/mainline && git fetch && git checkout -b $BRANCHTAG origin/$BRANCHTAG"); else |