mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-05 06:12:45 -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
|