diff options
author | Eric Hameleers <alien@slackware.com> | 2020-09-19 21:50:43 +0200 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2020-09-19 21:50:43 +0200 |
commit | e3939e70ef3d5fffc5204ae15a68c23e5f9a275d (patch) | |
tree | c1a37c7326aa2c92f97d7303172ac418ddc747aa /make_slackware_live.sh | |
parent | 519e5a5a46943c3f88070fa28e0043e9aad2ca07 (diff) | |
download | liveslak-e3939e70ef3d5fffc5204ae15a68c23e5f9a275d.tar.gz liveslak-e3939e70ef3d5fffc5204ae15a68c23e5f9a275d.tar.xz |
Fix handling of 'local' package lists
Diffstat (limited to '')
-rwxr-xr-x | make_slackware_live.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh index e9207d4..dd84bc5 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -382,8 +382,8 @@ function install_pkgs() { if [ "$3" = "local" -a -d ${LIVE_TOOLDIR}/local${DIRSUFFIX}/$1 ]; then echo "-- Installing local packages from subdir 'local${DIRSUFFIX}/$1'." - #installpkg --terse --root "$2" "local${DIRSUFFIX}/$1/*.t?z" - ROOT="$2" upgradepkg --install-new --reinstall "local${DIRSUFFIX}/$1/*.t?z" + #installpkg --terse --root "$2" "${LIVE_TOOLDIR}/local${DIRSUFFIX}/$1/*.t?z" + ROOT="$2" upgradepkg --install-new --reinstall "${LIVE_TOOLDIR}/local${DIRSUFFIX}/$1/*.t?z" else # Load package list and (optional) custom repo info: if [ "$3" = "tagfile" ]; then |