aboutsummaryrefslogtreecommitdiffstats
path: root/tools/fs_mkdir.sh
blob: 8305f1089c93c910ff95fb563b878b762f9d0f95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
set -e

# @describe Create a new directory at the specified path.

# @option --path! The path of the directory to create

main() {
    mkdir -p "$argc_path"
    echo "Directory created: $argc_path" >> "$LLM_OUTPUT"
}

eval "$(argc --argc-eval "$0" "$@")"