2022-08-15 12:25:12 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
if [ $1 -le 1 ]; then
|
|
|
|
|
# perform the below actions for rpm remove($1=0) or upgrade($1=1) operations
|
|
|
|
|
# remove pyc file generated by python
|
2024-12-05 23:16:46 -08:00
|
|
|
rm -rf /$RPM_INSTALL_PREFIX0/@CMAKE_INSTALL_LIBEXECDIR@/@RDC@/python_binding/__pycache__
|
2022-08-15 12:25:12 -05:00
|
|
|
fi
|