mirror of
https://github.com/clearlinux/clr-rpm-config.git
synced 2026-09-07 06:13:59 +00:00
9 lines
191 B
Bash
Executable File
9 lines
191 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# If using normal root, avoid changing anything.
|
|
if [ -z "$RPM_BUILD_ROOT" ] || [ "$RPM_BUILD_ROOT" = "/" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
find "$RPM_BUILD_ROOT" -name "*.pyo" -type f -delete
|