Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release script failed after new code samples commit #21

Merged
merged 1 commit into from
Jan 8, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions releaseLinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ echo "Moving 32bit external libraries to target"
cp -R external/include/* cpp/Linux_32/external/include/

echo "Moving 32bit examples to target"
cp examples/*cpp cpp/Linux_32/examples/
cp ReleaseStatic32/examples/*exe cpp/Linux_32/examples/
cp -r examples cpp/Linux_32/examples/src
find ReleaseStatic32/examples -perm +111 -type f -exec cp {} cpp/Linux_32/examples/ \;

echo "Clearing temporary 32bit libraries"
rm -rf ./ReleaseShared32
Expand Down Expand Up @@ -69,8 +69,8 @@ echo "Moving 64bit external libraries to target"
cp -R external/include/* cpp/Linux_64/external/include/

echo "Moving 64bit examples to target"
cp examples/*cpp cpp/Linux_64/examples/
cp ReleaseStatic64/examples/*exe cpp/Linux_64/examples/
cp -r examples cpp/Linux_64/examples/src
find ReleaseStatic64/examples -perm +111 -type f -exec cp {} cpp/Linux_64/examples/ \;

echo "Clearing temporary 64bit libraries"
rm -rf ./ReleaseShared64
Expand Down
8 changes: 4 additions & 4 deletions releaseWindows.bat
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ echo "Moving 32bit external libraries to target"
xcopy /S /Q external\include\* cpp\Windows_32\external\include\

echo "Moving 32bit examples to target"
copy examples\*cpp cpp\Windows_32\examples
copy ReleaseStatic32\examples\Release\*exe cpp\Windows_32\examples
xcopy /S /Q examples cpp\Windows_32\examples\src\
for /R ReleaseStatic32\examples %%G IN (*.exe) DO xcopy "%%G" cpp\Windows_32\examples

echo "Clearing temporary 32bit librares"
rm -rf .\ReleaseShared32
Expand Down Expand Up @@ -73,8 +73,8 @@ echo "Moving 64bit external libraries to target"
xcopy /S /Q external\include\* cpp\Windows_64\external\include\

echo "Moving 64bit examples to target"
copy examples\*cpp cpp\Windows_64\examples
copy ReleaseStatic64\examples\Release\*exe cpp\Windows_64\examples
xcopy /S /Q examples cpp\Windows_64\examples\src\
for /R ReleaseStatic64\examples %%G IN (*.exe) DO xcopy "%%G" cpp\Windows_64\examples

echo "Clearing tempraroy 64bit librares"
rm -rf ./ReleaseShared64
Expand Down