aboutsummaryrefslogtreecommitdiffstats
path: root/tools/fs_cat.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/fs_cat.sh')
-rwxr-xr-xtools/fs_cat.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/fs_cat.sh b/tools/fs_cat.sh
index bec9a12..37fe5dc 100755
--- a/tools/fs_cat.sh
+++ b/tools/fs_cat.sh
@@ -4,12 +4,10 @@ set -e
# @describe Read the contents of a file at the specified path.
# Use this when you need to examine the contents of an existing file.
-# @env FS_BASE_DIR=. The base dir
# @option --path! The path of the file to read
main() {
- path="$FS_BASE_DIR/$argc_path"
- cat "$path" >> "$LLM_OUTPUT"
+ cat "$argc_path" >> "$LLM_OUTPUT"
}
eval "$(argc --argc-eval "$0" "$@")"