Currently in the readme the curl command provided is as follows:
curl -sSLo https://codeberg.org/PowerUser/universal-studio/releases/download/0.1.0/universal-studio
This throws an error:
curl: (2) no URL specified
curl: try 'curl --help' or 'curl --manual' for more information
The problem is that you forgot to put a filename for the output flag. The command should look something like this:
curl -sSLo universal-studio https://codeberg.org/PowerUser/universal-studio/releases/download/0.1.0/universal-studio
Currently in the readme the curl command provided is as follows:
`curl -sSLo https://codeberg.org/PowerUser/universal-studio/releases/download/0.1.0/universal-studio`
This throws an error:
```
curl: (2) no URL specified
curl: try 'curl --help' or 'curl --manual' for more information
```
The problem is that you forgot to put a filename for the output flag. The command should look something like this:
`curl -sSLo universal-studio https://codeberg.org/PowerUser/universal-studio/releases/download/0.1.0/universal-studio`