12 lines
133 B
Bash
12 lines
133 B
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
if [ -f xop ]; then
|
|
cp -f xop /usr/local/bin/xop
|
|
else
|
|
echo "Please run 'sh compile.sh' beforehand."
|
|
fi
|
|
|
|
exit
|