Unverified Commit 0c6156d6 authored by Emily Trau's avatar Emily Trau Committed by GitHub
Browse files

Merge pull request #306604 from D3vil0p3r/patch-3

powersploit: change target directory
parents 5e950c58 e86a3e7d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -16,9 +16,9 @@ stdenvNoCC.mkDerivation {

  installPhase = ''
    runHook preInstall
    mkdir -p $out/share/powersploit
    cp -a * $out/share/powersploit
    find $out/share -type f -exec chmod -x {} \;
    mkdir -p $out/share/windows/powersploit
    cp -a * $out/share/windows/powersploit
    find $out/share/windows -type f -exec chmod -x {} \;
    runHook postInstall
  '';