You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
437 B
19 lines
437 B
#!/bin/bash
|
|
# Author: Pratima Singh <prati.86@gmail.com>, Nilesh Bairagi <nileshbairagi@gmail.com>, Madhurranjan Mohaan <madhurranjan.mohaan@gmail.com>
|
|
# Christoph Galuschka <christoph.galuschka@chello.at>
|
|
|
|
# Check git installation
|
|
|
|
t_Log "Running $0 - checking git installation"
|
|
|
|
if [ $centos_ver -ge 6 ]
|
|
then
|
|
git --version
|
|
ret_val=$?
|
|
else
|
|
t_Log "This test is skipped in CentOS5."
|
|
ret_val=0
|
|
fi
|
|
|
|
t_CheckExitStatus $ret_val
|