hhngn fuck make
parent
e3be5d0771
commit
8f34ba8977
@ -1,7 +0,0 @@
|
||||
install:
|
||||
chmod +x *.sh
|
||||
cp *.sh /usr/bin
|
||||
mv /usr/bin/citrine.sh /usr/bin/citrine
|
||||
mv /usr/bin/citrine.internal.sh /usr/bin/citrine.internal
|
||||
test: install
|
||||
citrine
|
@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
|
||||
ins() {
|
||||
chmod +x *.sh
|
||||
cp *.sh /usr/bin
|
||||
mv /usr/bin/citrine.sh /usr/bin/citrine
|
||||
mv /usr/bin/citrine.internal.sh /usr/bin/citrine.internal
|
||||
}
|
||||
|
||||
testc() {
|
||||
citrine
|
||||
}
|
||||
|
||||
if [[ "$1" == "" ]]; then
|
||||
echo "./make.sh install - installs citrine"
|
||||
echo "./make.sh test - (installs) then runs citrine"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ "$1" == "install" ]]; then
|
||||
ins
|
||||
elif [[ "$1" == "test" ]]; then
|
||||
ins
|
||||
testc
|
||||
fi
|
Loading…
Reference in New Issue