You are here

function hacked_cvs_get_command in Hacked! 7.2

Same name and namespace in other branches
  1. 6.2 hacked.module \hacked_cvs_get_command()
  2. 6 hacked.module \hacked_cvs_get_command()

Helper function to return the command to run cvs on the command line.

2 calls to hacked_cvs_get_command()
hacked_cvs_checkout in ./hacked.module
Checks out a folder from CVS to a temporary directory.
hacked_cvs_executable_get_version in ./hacked.module
Returns the version of the installed cvs executable on this machine

File

./hacked.module, line 304
The Hacked! module, shows which project have been changed since download.

Code

function hacked_cvs_get_command() {
  $cvs_cmd = variable_get('hacked_cvs_cmd', 'cvs');
  return $cvs_cmd;
}