mirror of
https://github.com/Egor00f/kolibrios-gcc-toolchain.git
synced 2024-11-21 17:03:48 +01:00
12 lines
212 B
Bash
Executable File
12 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm -R /home/autobuild/tools/win32
|
|
|
|
if grep -q 'PATH=$PATH:/home/autobuild/tools/win32/bin' /etc/profile; then
|
|
val="PATH=\$PATH:/home/autobuild/tools/win32/bin"
|
|
sed -i '/$val/d' /etc/profile
|
|
fi
|
|
|
|
|
|
|