powersploit: change target directory

This commit is contained in:
D3vil0p3r 2024-04-24 20:16:13 +02:00 committed by GitHub
parent 7521100948
commit e86a3e7d2c
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
'';