diff options
author | Mikma <mikma@users.noreply.github.com> | 2019-02-10 23:02:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-10 23:02:39 +0100 |
commit | dcc1b3816849b5f6041fa0b0b36beaa22f603741 (patch) | |
tree | 9bebab3e9396e69913fdf14d736fb46963ef1b43 | |
parent | 8b67a2a9070a41396078f8381eb79b23c804db7d (diff) | |
parent | e81ec3f9b5a10a63a96df2c0011ec9f1e394c683 (diff) |
Merge pull request #8 from lxdicted/bugfix/package-installation
BUGFIX: Allow installation of multiple packages
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -235,7 +235,7 @@ build_tarball() { fi local allpkgs="${packages}" for pkg in $pkgdir/*.ipk; do - allpkgs=" $pkg" + allpkgs="${allpkgs} $pkg" done local cmd="scripts/build_rootfs.sh" |