diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2022-02-13 15:42:16 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2022-02-13 15:42:16 -0300 |
commit | 50cc41656b2407b32518fefb4f6424fe8f09688a (patch) | |
tree | 5a9915a5ed29a45a13b96b98990385cac5575b91 | |
parent | ac6fb6fb1fa872a2f79249b78aea80f5654332ef (diff) | |
download | stowpkg-50cc41656b2407b32518fefb4f6424fe8f09688a.tar.gz stowpkg-50cc41656b2407b32518fefb4f6424fe8f09688a.tar.bz2 |
Fix: coding style
-rw-r--r-- | README.md | 8 | ||||
-rwxr-xr-x | stowpkg | 2 |
2 files changed, 6 insertions, 4 deletions
@@ -1,7 +1,8 @@ Stowpkg: ports system based on GNU Stow ======================================= -A portable, non-conflicting Unix package manager built atop of [GNU Stow](https://www.gnu.org/software/stow/). +A portable, non-conflicting Unix package manager built atop of [GNU +Stow](https://www.gnu.org/software/stow/). Features -------- @@ -54,8 +55,9 @@ Configuration Use `~/.config/stowpkg` do put any default parameters. Current supported params include -* `BASE`: defaults to `<stowpkg-repo>/tree/<architecture>`, but can be configured to anything like - `/usr/local` with corresponding packages installed at `/usr/local/stow`. +* `BASE`: defaults to `<stowpkg-repo>/tree/<architecture>`, but can be + configured to anything like `/usr/local` with corresponding packages + installed at `/usr/local/stow`. Filesystem layout ----------------- @@ -125,7 +125,7 @@ stowpkg_install () { echo "$BASENAME: package not found: $package" exit 1 fi - + if [ "`basename $location`" != "$package" ]; then echo "$BASENAME: package not found: $package" exit 1 |