mirror of
https://github.com/Matir/skel.git
synced 2026-05-26 13:35:42 -07:00
Fix package relative paths.
This commit is contained in:
@@ -155,8 +155,9 @@ function run_as_root {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function install_pkg_set {
|
function install_pkg_set {
|
||||||
if [[ ! -f ${1} ]] ; then return 0 ; fi
|
local pkg_file=${BASEDIR}/${1}
|
||||||
run_as_root apt-get install -y `cat ${BASEDIR}/${1}`
|
if [[ ! -f ${pkg_file} ]] ; then return 0 ; fi
|
||||||
|
run_as_root apt-get install -y `cat ${pkg_file}`
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_apt_pkgs {
|
function install_apt_pkgs {
|
||||||
|
|||||||
Reference in New Issue
Block a user