mirror of
https://github.com/kardolus/chatgpt-cli.git
synced 2024-09-08 23:15:00 +03:00
10 lines
128 B
Bash
Executable File
10 lines
128 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
mkdir -p bin
|
|
rm -f bin/*
|
|
|
|
TARGET_OS=${1:-darwin}
|
|
|
|
source ./scripts/install.sh $TARGET_OS
|