Skip to content

Commit

Permalink
Integrate zhouwang/remove-evalv2examples-fromdrop into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Project Philly committed Sep 26, 2016
2 parents 184ff0f + 5fc85f9 commit 3423fb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Tools/make_binary_drop_linux
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ CopyFilesFromList $includePath includeFiles[@] $baseIncludePath
echo "Copying Examples..." >&3
cp -r Examples $baseDropPath
# Remove CPPEvalV2Client examples until V2 binaries are included in the binary drop
rm -rf $baseDropPath/Examples/CPPEvalV2Client
rm -rf $baseDropPath/Examples/Evaluation/CPPEvalV2Client

# Copy Scripts (Scripts folder from the root of the Repo)
echo "Copying Scripts..." >&3
Expand Down
4 changes: 2 additions & 2 deletions Tools/make_binary_drop_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ Copy-Item $includeFile -Destination $baseIncludePath
Write-Verbose "Copying Examples ..."
Copy-Item Examples -Recurse -Destination $baseDropPath\Examples
# Remove CPPEvalV2Client examples, until V2 is included in the binary drop
If (Test-Path $baseDropPath\Examples\CPPEvalV2Client)
If (Test-Path $baseDropPath\Examples\Evaluation\CPPEvalV2Client)
{
Remove-Item $baseDropPath\Examples\CPPEvalV2Client -Recurse
Remove-Item $baseDropPath\Examples\Evaluation\CPPEvalV2Client -Recurse
}

# Copy Scripts
Expand Down

0 comments on commit 3423fb2

Please sign in to comment.