Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
nptool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
np
nptool
Commits
eb7a1438
Commit
eb7a1438
authored
9 years ago
by
de Séréville Nicolas
Browse files
Options
Downloads
Patches
Plain Diff
+ Fix minor bugs
parent
c6362584
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
NPLib/scripts/nptool-cleaner.sh
+45
-32
45 additions, 32 deletions
NPLib/scripts/nptool-cleaner.sh
with
45 additions
and
32 deletions
NPLib/scripts/nptool-cleaner.sh
+
45
−
32
View file @
eb7a1438
...
...
@@ -74,73 +74,86 @@ if [ -f ./install_manifest.txt ] ; then
rm
./install_manifest.txt
fi
# NPLibTargets.cmake file
if
[
-f
./NPLibTargets.cmake
]
;
then
rm
./NPLibTargets.cmake
fi
# NPLibConfig.cmake file
if
[
-f
./NPLibConfig.cmake
]
;
then
rm
./NPLibConfig.cmake
fi
# bin directory
for
file
in
./bin/
*
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
#rmdir ./bin
rm
$file
fi
;
done
if
[
-d
./bin
]
;
then
rmdir
./bin
fi
;
# include directory
for
file
in
./include/
*
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
#rmdir ./include
rm
$file
fi
;
done
# lib directory
for
file
in
./lib/
*
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
#rmdir ./lib
rm
$file
fi
;
done
if
[
-d
./lib
]
;
then
rmdir
./lib
fi
;
# .so extention
for
file
in
./
*
/
*
.so
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
rm
$file
fi
;
done
for
file
in
./
*
/
*
/
*
.so
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
rm
$file
fi
;
done
# .dylib extention
for
file
in
./
*
/
*
.dylib
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
rm
$file
fi
;
done
for
file
in
./
*
/
*
/
*
.dylib
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
rm
$file
fi
;
done
# dictionnary files
for
file
in
./
*
/
*
Dict
*
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
rm
$file
fi
;
done
for
file
in
./
*
/
*
/
*
Dict
*
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
rm
$file
fi
;
done
# Makefile files
...
...
@@ -150,14 +163,14 @@ fi
for
file
in
./
*
/Makefile
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
rm
$file
fi
;
done
for
file
in
./
*
/
*
/Makefile
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
rm
$file
fi
;
done
# cmake_install.cmake files
...
...
@@ -167,13 +180,13 @@ fi
for
file
in
./
*
/cmake_install.cmake
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
rm
$file
fi
;
done
for
file
in
./
*
/
*
/cmake_install.cmake
do
if
[
-f
$file
]
;
then
rm
$file
rm
$file
fi
;
done
...
...
@@ -181,14 +194,14 @@ done
for
file
in
./
*
/.ninja
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
rm
$file
fi
;
done
for
file
in
./
*
/
*
/.ninja
do
if
[
-f
$file
]
;
then
rm
$file
fi
;
rm
$file
fi
;
done
# CMakeFiles directories
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment