12 lines
212 B
Plaintext
Raw Normal View History

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