Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 18 lines 448 B view raw
1# shellcheck shell=bash 2# shellcheck disable=SC2154 3 4moveKF6Outputs() { 5 if [ -n "$devtools" ]; then 6 mkdir -p "$devtools" 7 moveToOutput "${qtPluginPrefix}/designer" "$devtools" 8 fi 9 10 if [ -n "$python" ]; then 11 mkdir -p "$python" 12 moveToOutput 'lib/python*' "$python" 13 moveToOutput 'share/PySide6' "$python" 14 moveToOutput 'include/PySide6' "$python" 15 fi 16} 17 18postInstallHooks+=('moveKF6Outputs')