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

View File

@ -16,9 +16,9 @@ stdenvNoCC.mkDerivation {
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
mkdir -p $out/share/powersploit mkdir -p $out/share/windows/powersploit
cp -a * $out/share/powersploit cp -a * $out/share/windows/powersploit
find $out/share -type f -exec chmod -x {} \; find $out/share/windows -type f -exec chmod -x {} \;
runHook postInstall runHook postInstall
''; '';