kolibrios-gcc-toolchain/package/DEBIAN/postrm

12 lines
212 B
Plaintext
Raw Normal View History

2024-11-08 16:33:38 +01:00
#!/bin/bash
2024-11-08 12:31:31 +01:00
rm -R /home/autobuild/tools/win32
2024-11-09 13:24:35 +01:00
2024-11-09 13:38:41 +01:00
if grep -q 'PATH=$PATH:/home/autobuild/tools/win32/bin' /etc/profile; then
2024-11-09 14:46:44 +01:00
val="PATH=\$PATH:/home/autobuild/tools/win32/bin"
2024-11-09 14:51:19 +01:00
sed -i '/$val/d' /etc/profile
2024-11-09 13:38:41 +01:00
fi
2024-11-09 14:46:44 +01:00