Compare commits

..

2 Commits
v0.1.4 ... main

Author SHA1 Message Date
0fe935eac4 [Readme] Fix spelling 2022-12-20 19:43:29 +01:00
Faerbit
bf166b6218 Also remove symlinks. 2019-08-25 13:52:27 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ make install DESTDIR=/desired/path
```
## Usage
### Prerequesite
### Prerequisites
``` 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 [ -e "$file" ]
elif [[ -L "$file" || -e "$file" ]]
then
rm -vf "$file"
else