Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
cba4642d
Commit
cba4642d
authored
9 years ago
by
Luke Rohde
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use find ... -delete instead of non-portable globbing
parent
647e48f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
hacking/env-setup
+2
-2
hacking/env-setup.fish
+1
-1
No files found.
hacking/env-setup
View file @
cba4642d
...
...
@@ -57,10 +57,10 @@ fi
cd "$ANSIBLE_HOME"
if [ "$verbosity" = silent ] ; then
gen_egg_info > /dev/null 2>&1
rm **/*.pyc
> /dev/null 2>&1
find . -type f -name "*.pyc" -delete
> /dev/null 2>&1
else
gen_egg_info
rm **/*.pyc
find . -type f -name "*.pyc" -delete
fi
cd "$current_dir"
)
...
...
This diff is collapsed.
Click to expand it.
hacking/env-setup.fish
View file @
cba4642d
...
...
@@ -43,7 +43,7 @@ if test -e $PREFIX_PYTHONPATH/ansible*.egg-info
rm -r $PREFIX_PYTHONPATH/ansible*.egg-info
end
mv ansible*egg-info $PREFIX_PYTHONPATH
rm **/*.pyc
find . -type f -name "*.pyc" -delete
popd
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment