mirror of
https://github.com/0xacx/chatGPT-shell-cli.git
synced 2024-11-24 11:25:31 +00:00
Merge pull request #33 from 0xacx/add-xdg-open-to-linux-installs
Replace open command with xdg-open when install runs on linux
This commit is contained in:
commit
46e3db2298
@ -29,6 +29,11 @@ fi
|
|||||||
|
|
||||||
# Installing chatgpt script
|
# Installing chatgpt script
|
||||||
curl -sS https://raw.githubusercontent.com/0xacx/chatGPT-shell-cli/main/chatgpt.sh -o /usr/local/bin/chatgpt
|
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
|
chmod +x /usr/local/bin/chatgpt
|
||||||
echo "Installed chatgpt script to /usr/local/bin/chatgpt"
|
echo "Installed chatgpt script to /usr/local/bin/chatgpt"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user