Skip to content
Snippets Groups Projects
Commit 3d364a25 authored by adrien-matta's avatar adrien-matta
Browse files

Change script to avoid deleting of .gitignore

parent a28b1e11
No related branches found
No related tags found
No related merge requests found
...@@ -24,9 +24,7 @@ ...@@ -24,9 +24,7 @@
echo " + Copying header files to the include directory....." echo " + Copying header files to the include directory....."
# previously, clean include directory # previously, clean include directory
cd include/ rm -f include/*.h
rm -f *
cd ../
# loop recursively on header files in all directories # loop recursively on header files in all directories
for file in */*.h for file in */*.h
...@@ -36,5 +34,4 @@ do ...@@ -36,5 +34,4 @@ do
done done
# remove include file with *Dict* # remove include file with *Dict*
cd include/ rm -f include/*Dict*
rm -f *Dict*
...@@ -24,9 +24,7 @@ ...@@ -24,9 +24,7 @@
echo " + Copying libraries to the lib directory....." echo " + Copying libraries to the lib directory....."
# previously, clean lib/ directory # previously, clean lib/ directory
cd lib/ rm -f lib/*.so
rm -f *
cd ../
# loop recursively on header files in all directories # loop recursively on header files in all directories
for file in */*.so for file in */*.so
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment