Changes between Version 2 and Version 3 of CygwinShellCommands


Ignore:
Timestamp:
12/06/10 13:15:45 (3 years ago)
Author:
hushp1pt
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CygwinShellCommands

    v2 v3  
    3535 
    3636For builds to run on Windows,  
    37     `bash = r'C:cygwin-1.7inash.exe'`  
    38 and  
    39     `envd[ 'PATH' ] = r'/usr/local/bin:/usr/bin:/bin:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS'` 
    40  
    41 For builds to run on Linux, 
    42     `bash = 'bash'`   
    43 and 
    44     `envd[ 'PATH' ]` is not defined. 
     37{{{ 
     38    bash = r'C:cygwin-1.7inash.exe'  
     39    envd[ 'PATH' ] = r'/usr/local/bin:/usr/bin:/bin:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS' 
     40}}} 
     41For builds to run on Linux,  
     42{{{ 
     43    bash = 'bash'   
     44    envd[ 'PATH' ] # is not defined. 
     45}}} 
    4546 
    4647Specifying the full Windows path to bash.exe (including the ".exe"), allows !ShellCommand to bypass cmd.exe and just run bash.exe directly. If your buildslave uses cmd.exe to run command(s), then you cannot pass a multiple-line command string.