Skip to content

Commit

Permalink
Fix clean scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
halx99 committed Aug 23, 2021
1 parent 220e0d9 commit a481c43
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/curl/clean1.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ if ((Test-Path $install_dir -PathType Container)) {
Write-Output "Cleaning ${install_dir}..."
# Delete files what we don't want
Remove-Item "$install_dir\bin\curl-config"
Remove-Item "$install_dir\lib\cmake" -recurse
Remove-Item "$install_dir\lib\pkgconfig" -recurse
Remove-Item "$install_dir\cmake" -recurse
}
2 changes: 2 additions & 0 deletions src/jpeg-turbo/clean1.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ if ((Test-Path $install_dir -PathType Container)) {
# Delete files what we don't want
# Remove-Item "$install_dir\bin" -recurse
Remove-Item "$install_dir\share" -recurse
Remove-Item "$install_dir\lib\cmake" -recurse
Remove-Item "$install_dir\lib\pkgconfig" -recurse
}
2 changes: 2 additions & 0 deletions src/jpeg-turbo/clean1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ if [ -d "$install_dir" ] ; then
# Delete files what we don't want
# rm -rf "$install_dir/bin"
rm -rf "$install_dir/share"
rm -rf "$install_dir/lib/cmake"
rm -rf "$install_dir/lib/pkgconfig"
fi

0 comments on commit a481c43

Please sign in to comment.