Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
camtron
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
kr69sugu
camtron
Commits
2e90e25a
Commit
2e90e25a
authored
1 year ago
by
Andrews Cordolino Sobral
Browse files
Options
Downloads
Patches
Plain Diff
Updated build dir
parent
4bab70eb
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
build/.gitignore
+2
-1
2 additions, 1 deletion
build/.gitignore
build/clean.sh
+21
-0
21 additions, 0 deletions
build/clean.sh
build/uninstall-from-cmake.sh
+0
-0
0 additions, 0 deletions
build/uninstall-from-cmake.sh
modules/pybind11
+1
-1
1 addition, 1 deletion
modules/pybind11
with
24 additions
and
2 deletions
build/.gitignore
+
2
−
1
View file @
2e90e25a
...
@@ -2,4 +2,5 @@
...
@@ -2,4 +2,5 @@
*
*
# Except these files
# Except these files
!.gitignore
!.gitignore
!.uninstall-from-cmake.sh
!uninstall-from-cmake.sh
!clean.sh
\ No newline at end of file
This diff is collapsed.
Click to expand it.
build/clean.sh
0 → 100755
+
21
−
0
View file @
2e90e25a
#!/bin/bash
# Navigating to the script's directory (if needed)
# cd "$(dirname "$0")"
# Exclude files from deletion
excludes
=(
".gitignore"
"uninstall-from-cmake.sh"
"clean.sh"
)
# Create the find command excluding specified files
find_command
=
"find . -mindepth 1"
for
exclude
in
"
${
excludes
[@]
}
"
;
do
find_command+
=
" ! -name
$exclude
"
done
# Append action to delete
find_command+
=
" -delete"
# Execute the command
eval
$find_command
echo
"Directory cleaned, except for specified exclusions."
This diff is collapsed.
Click to expand it.
build/
.
uninstall-from-cmake.sh
→
build/uninstall-from-cmake.sh
100644 → 100755
+
0
−
0
View file @
2e90e25a
File moved
This diff is collapsed.
Click to expand it.
pybind11
@
65bbd4e0
Compare
8a099e44
...
65bbd4e0
Subproject commit
8a099e44b3d5f85b20f05828d919d2332a8de841
Subproject commit
65bbd4e0b210655a981be91ae2d3daca358f30f8
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