Fixed empty folders

This commit is contained in:
COW_ILLUMINATI 2024-05-28 11:44:09 -04:00
parent 9c6d9edeb4
commit 83166d8e62
4 changed files with 38 additions and 1 deletions

2
.gitignore vendored

@ -1 +1 @@
cowtool
./cowtool

@ -0,0 +1,37 @@
### This is the template bash file used by cowtool ###
### Prep ###
startdir=$(pwd)
### Entering workspace ###
echo "Entering workspace..."
mkdir /sources/cowtool/buildspace
cd /sources/cowtool/buildspace
### Obtaining package source ###
echo "Fetching source..."
git clone <url> <name>
### Entering source ###
echo "Entering source..."
cd <name>
### Building package ###
echo "Building package..."
make
### Installing package ###
echo "Installing package..."
make install
### Cleaning up ###
echo "Cleaning up..."
cd $startdir
rm -rf /sources/cowtool/buildspace/<name>