pumpkin/installer

10 lines
90 B
Plaintext
Raw Permalink Normal View History

2020-06-16 12:27:53 +02:00
#!/bin/bash
./configure
if [ $? == 0 ]
then
echo "Installing..."
sudo make install
fi