aboutsummaryrefslogtreecommitdiffstats
path: root/tools/fs_mkdir.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/fs_mkdir.sh')
-rwxr-xr-xtools/fs_mkdir.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/fs_mkdir.sh b/tools/fs_mkdir.sh
index 79d853a..8305f10 100755
--- a/tools/fs_mkdir.sh
+++ b/tools/fs_mkdir.sh
@@ -3,13 +3,11 @@ set -e
# @describe Create a new directory at the specified path.
-# @env FS_BASE_DIR=. The base dir
# @option --path! The path of the directory to create
main() {
- path="$FS_BASE_DIR/$argc_path"
- mkdir -p "$path"
- echo "Directory created: $path" >> "$LLM_OUTPUT"
+ mkdir -p "$argc_path"
+ echo "Directory created: $argc_path" >> "$LLM_OUTPUT"
}
eval "$(argc --argc-eval "$0" "$@")"