mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-11 14:22:31 -06:00
9 lines
193 B
Bash
9 lines
193 B
Bash
#! /bin/sh
|
|
if [ -f ~/upp/uppsrc/CtrlCore/CtrlCore.h ]
|
|
then
|
|
echo "find CtrlCore.h"
|
|
cp CtrlCore.h ~/upp/uppsrc/CtrlCore/CtrlCore.h -f
|
|
else
|
|
echo "Cannot find CtrlCore.h!!!!"
|
|
exit
|
|
fi
|