lol

pythonRemoveBinBytecodeHook: fix explanation

+4 -4
+4 -4
pkgs/development/interpreters/python/hooks/python-remove-bin-bytecode-hook.sh
··· 1 - # Setup hook for detecting conflicts in Python packages 1 + # Setup hook for removing bytecode from the bin folder 2 2 echo "Sourcing python-remove-bin-bytecode-hook.sh" 3 3 4 - # Check if we have two packages with the same name in the closure and fail. 5 - # If this happens, something went wrong with the dependencies specs. 6 - # Intentionally kept in a subdirectory, see catch_conflicts/README.md. 4 + # The bin folder is added to $PATH and should only contain executables. 5 + # It may happen there are executables with a .py extension for which 6 + # bytecode is generated. This hook removes that bytecode. 7 7 8 8 pythonRemoveBinBytecodePhase () { 9 9 if [ -d "$out/bin" ]; then