mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-25 02:32:58 -03:00
Follow redirects when downloading with curl
This commit is contained in:
parent
1116a407ea
commit
fef5e3b2ec
2 changed files with 6 additions and 2 deletions
|
@ -332,13 +332,13 @@ jobs:
|
||||||
- run:
|
- run:
|
||||||
name: Install Go 1.18.3
|
name: Install Go 1.18.3
|
||||||
command: |
|
command: |
|
||||||
curl https://go.dev/dl/go1.18.3.darwin-amd64.pkg --output ~/Downloads/go.pkg
|
curl -L https://go.dev/dl/go1.18.3.darwin-amd64.pkg --output ~/Downloads/go.pkg
|
||||||
sudo installer -pkg ~/Downloads/go.pkg -target /
|
sudo installer -pkg ~/Downloads/go.pkg -target /
|
||||||
|
|
||||||
- run:
|
- run:
|
||||||
name: Install Python 3.9.13
|
name: Install Python 3.9.13
|
||||||
command: |
|
command: |
|
||||||
curl https://www.python.org/ftp/python/3.9.13/python-3.9.13-macosx10.9.pkg --output ~/Downloads/python.pkg
|
curl -L https://www.python.org/ftp/python/3.9.13/python-3.9.13-macosx10.9.pkg --output ~/Downloads/python.pkg
|
||||||
sudo installer -pkg ~/Downloads/python.pkg -target /
|
sudo installer -pkg ~/Downloads/python.pkg -target /
|
||||||
|
|
||||||
- run:
|
- run:
|
||||||
|
|
|
@ -119,6 +119,10 @@ This will create:
|
||||||
|
|
||||||
## macOS
|
## macOS
|
||||||
|
|
||||||
|
Set up the packaging environment:
|
||||||
|
|
||||||
|
- Install create-dmg: `brew install create-dmg`
|
||||||
|
|
||||||
CircleCI will build the binaries. Find the CircleCI job `build-macos`, switch to the artifacts tab, and download:
|
CircleCI will build the binaries. Find the CircleCI job `build-macos`, switch to the artifacts tab, and download:
|
||||||
|
|
||||||
- `onionshare-macos.zip`
|
- `onionshare-macos.zip`
|
||||||
|
|
Loading…
Add table
Reference in a new issue