summaryrefslogtreecommitdiff
path: root/script/build/command
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-09-27 21:46:20 +0100
committerLeah Rowe <leah@libreboot.org>2023-09-27 22:31:24 +0100
commit74c48a881df378a83e261c2785012609d81d801e (patch)
tree52dcd41154762a823bf1d5d06c7a788536aea874 /script/build/command
parenta00b43375a7d4a33b6569c0b6ccb9e9291877bb5 (diff)
move build/command/options to include/option.sh
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/build/command')
-rwxr-xr-xscript/build/command/options30
1 files changed, 0 insertions, 30 deletions
diff --git a/script/build/command/options b/script/build/command/options
deleted file mode 100755
index e25daeea..00000000
--- a/script/build/command/options
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env sh
-# SPDX-License-Identifier: MIT
-# SPDX-FileCopyrightText: 2023 Leah Rowe <leah@libreboot.org>
-
-. "include/err.sh"
-
-items=1
-
-main()
-{
- [ $# -gt 0 ] || \
- err "No argument given"
- listitems "${1}" || err "No items present under: ${1}"
-}
-
-listitems()
-{
- [ -d "${1}" ] || \
- err "Directory not does exist: ${1}"
- for x in "${1}/"*; do
- # -e used because this is for files *or* directories
- [ -e "${x}" ] || continue
- [ "${x##*/}" = "build.list" ] && continue
- printf "%s\n" "${x##*/}" 2>/dev/null
- items=0
- done
- return ${items}
-}
-
-main $@