Changeset 0dfcb83


Ignore:
Timestamp:
12/17/11 13:12:48 (5 months ago)
Author:
mrook
Branches:
master
Children:
778910a
Parents:
9afe919
git-author:
Michiel Rook <mrook@…> (12/17/11 13:12:48)
git-committer:
Michiel Rook <mrook@…> (12/17/11 13:12:48)
Message:

Fixes #736 - translate windows paths into non-windows equivalents

File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/phing/tasks/ext/ScpTask.php

    r5c07ec7 r0dfcb83  
    327327                foreach($files as $file) { 
    328328                    $path = $dir.DIRECTORY_SEPARATOR.$file; 
    329                     $this->copyFile($path, $file); 
     329                     
     330                    // Translate any Windows paths 
     331                    $this->copyFile($path, strtr($file, '\\', '/')); 
    330332                } 
    331333            } 
Note: See TracChangeset for help on using the changeset viewer.