summaryrefslogtreecommitdiff
path: root/lbmk
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-09-04 02:36:41 +0100
committerLeah Rowe <leah@libreboot.org>2023-09-04 02:47:25 +0100
commitda3c9bb3c5c3b1f2e6e67a3695ce39b17bf68d5b (patch)
treeb81cdd418a4906c846800a8c5094b312e74f57df /lbmk
parenta05010503f9a748943033d1fc40e36625e72dcbb (diff)
merge config/ and resources/
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'lbmk')
-rwxr-xr-xlbmk6
1 files changed, 3 insertions, 3 deletions
diff --git a/lbmk b/lbmk
index 0cd4c7a2..04f52a99 100755
--- a/lbmk
+++ b/lbmk
@@ -44,7 +44,7 @@ main()
if [ "${mode}" = "dependencies" ]; then
if [ $# -lt 2 ]; then
printf "You must specify a distro, namely:\n" 1>&2
- printf "Look at files under resources/dependencies/\n" \
+ printf "Look at files under config/dependencies/\n" \
1>&2
printf "Example: ./build dependencies debian\n" 1>&2
fail "target not specified"
@@ -98,10 +98,10 @@ main()
install_dependencies()
{
- [ -f "resources/dependencies/${2}" ] || fail "Unsupported target"
+ [ -f "config/dependencies/${2}" ] || fail "Unsupported target"
aur_notice=""
- . "resources/dependencies/${2}"
+ . "config/dependencies/${2}"
${pkg_add} ${pkglist} || \
fail "install_dependencies: Error installing dependencies"