mirror of
https://github.com/0xacx/chatGPT-shell-cli.git
synced 2024-11-24 11:25:31 +00:00
Replace open command with xdg-open when install runs on linux
This commit is contained in:
parent
89549cf318
commit
d5c31f89eb
@ -29,6 +29,11 @@ fi
|
||||
|
||||
# Installing chatgpt script
|
||||
curl -sS https://raw.githubusercontent.com/0xacx/chatGPT-shell-cli/main/chatgpt.sh -o /usr/local/bin/chatgpt
|
||||
|
||||
# Replace open image command with xdg-open for linux systems
|
||||
if [[ "$OSTYPE" == "linux-gnu"* ]] || [[ "$OSTYPE" == "freebsd"* ]]; then
|
||||
sed -i -h 's/open "\${image_url}"/xdg-open "\${image_url}"/g' '/usr/local/bin/chatgpt'
|
||||
fi
|
||||
chmod +x /usr/local/bin/chatgpt
|
||||
echo "Installed chatgpt script to /usr/local/bin/chatgpt"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user