diff options
author | MithicSpirit | 2023-04-28 23:09:57 -0400 |
---|---|---|
committer | MithicSpirit | 2023-04-28 23:09:57 -0400 |
commit | ae290c429b6b73975822eb733c498f1f5f25b74d (patch) | |
tree | 62dff4711eb746a5f7fa10eeb10089d4a3faeb44 | |
parent | 256354401ccd202d25ab90110e5d42c0b1f7beef (diff) | |
download | aur-ae290c429b6b73975822eb733c498f1f5f25b74d.tar.gz |
No longer need to remove empty dirs
Seems they fixed that issue, as those dirs are no longer present
-rw-r--r-- | .gitignore | 9 | ||||
-rw-r--r-- | PKGBUILD | 1 |
2 files changed, 4 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore index 277fba338ef3..167d5c3bc3e7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ -* -**/* +/* -!.gitignore -!PKGBUILD -!.SRCINFO +!/.gitignore +!/PKGBUILD +!/.SRCINFO @@ -48,6 +48,5 @@ build() { package() { cd "$srcdir/$_pkgname" make install PREFIX=/usr DESTDIR="$pkgdir" - rmdir "$pkgdir/usr/lib/nyxt" "$pkgdir/usr/lib" # empty directories install -m644 -Dt "$pkgdir/usr/share/licenses/$pkgname/" licenses/* } |