mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 22:03:07 -06:00
8 lines
110 B
Bash
8 lines
110 B
Bash
#!/bin/bash
|
|
# remove GCC*.bm files
|
|
set -e
|
|
|
|
if [ -e /usr/share/upp/GCC.bm ]
|
|
then
|
|
rm /usr/share/upp/GCC.bm
|
|
fi
|