Useless now

This commit is contained in:
Mattia Mascarello 2021-10-11 11:25:17 +02:00 committed by GitHub
parent 02dfd47558
commit 610a1222ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +0,0 @@
if [ $(id -u) -ne 0 ]
then echo "Please run as root"
exit
fi
if [ -z $(which gcc) ]
then echo "Please install gcc first"
exit
fi
echo "Compiling ropipe"
gcc -o ropipe ropipe.c
mkdir -p /usr/local/share/man/man1/
echo "Copying man file"
cp ropipe.1 /usr/local/share/man/man1/ropipe.1
echo "Installing binary"
cp ropipe /usr/bin/ropipe
echo "Done"