buildPython hooks: format with shfmt
This commit is contained in:
@@ -5,10 +5,10 @@ echo "Sourcing python-remove-bin-bytecode-hook.sh"
|
||||
# It may happen there are executables with a .py extension for which
|
||||
# bytecode is generated. This hook removes that bytecode.
|
||||
|
||||
pythonRemoveBinBytecodePhase () {
|
||||
pythonRemoveBinBytecodePhase() {
|
||||
if [ -d "$out/bin" ]; then
|
||||
rm -rf "$out/bin/__pycache__" # Python 3
|
||||
find "$out/bin" -type f -name "*.pyc" -delete # Python 2
|
||||
rm -rf "$out/bin/__pycache__" # Python 3
|
||||
find "$out/bin" -type f -name "*.pyc" -delete # Python 2
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user