Compare commits

..

No commits in common. "main" and "v0.1.4" have entirely different histories.
main ... v0.1.4

2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ make install DESTDIR=/desired/path
```
## Usage
### Prerequisites
### Prerequesite
``` bash
mkdir /pkg # folder for storing packages
```

View File

@ -23,7 +23,7 @@ do
then
out=$(rmdir -v "$file" 2>&1)
[ $? -eq 0 ] && echo $out
elif [[ -L "$file" || -e "$file" ]]
elif [ -e "$file" ]
then
rm -vf "$file"
else