aboutsummaryrefslogtreecommitdiffstats
path: root/tools/fs_ls.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/fs_ls.sh')
-rwxr-xr-xtools/fs_ls.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/fs_ls.sh b/tools/fs_ls.sh
index f288f77..c7deb40 100755
--- a/tools/fs_ls.sh
+++ b/tools/fs_ls.sh
@@ -3,12 +3,10 @@ set -e
# @describe List all files and directories at the specified path.
-# @env FS_BASE_DIR=. The base dir
# @option --path! The path of the directory to list
main() {
- path="$FS_BASE_DIR/$argc_path"
- ls -1 "$path" >> "$LLM_OUTPUT"
+ ls -1 "$argc_path" >> "$LLM_OUTPUT"
}
eval "$(argc --argc-eval "$0" "$@")"