Merge pull request #306604 from D3vil0p3r/patch-3

powersploit: change target directory
This commit is contained in:
Emily Trau 2024-04-25 15:39:49 +10:00 committed by GitHub
commit 0c6156d6c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -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
'';