diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-06-30 22:32:09 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-06-30 22:32:09 +0200 |
commit | cfd8b50e1d4cfbbf7fa79de4d5797069cef86bb5 (patch) | |
tree | a4cf501fd46da92b0542f5f6423c55d495449221 /docs | |
parent | 38552e1f17f75b921c587d743f9e1b37c61b5dc5 (diff) |
[docs] correct path for homebrew bundle tarballs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hacking/osx.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hacking/osx.rst b/docs/hacking/osx.rst index 29a65a08..7a60ff15 100644 --- a/docs/hacking/osx.rst +++ b/docs/hacking/osx.rst @@ -120,12 +120,12 @@ the form of a `.pkg` , and the other is the bare libs folder. The Bitmask Formula instructs homebrew to fetch a tar.gz with this last folder, so first step is preparing the tarball:: - tar cvzf bitmask-`cat pkg/next-version`.tar.gz dist/bitmask-`cat pkg/next-version` + cd dist && tar cvzf bitmask-`cat ../pkg/next-version`.tar.gz bitmask-`cat pkg/next-version` If you already uploaded a bundle with that version, make sure that you rename it to include a patch version before uploading it:: - scp bitmask-`cat pkg/next-version` downloads.leap.se:./client/osx/internal/ + scp dist/bitmask-`cat pkg/next-version` downloads.leap.se:./client/osx/internal/ Then the ``version`` file needs to be changed in the Formula. The ``sha256`` field has also to be updated, you can get the value with:: |