pumpkin/installer

10 lines
90 B
Bash
Executable File

#!/bin/bash
./configure
if [ $? == 0 ]
then
echo "Installing..."
sudo make install
fi