diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2019-08-28 01:35:25 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2019-08-28 19:23:29 +0200 |
commit | 4bcd4ab264d784364e918b65fd1cc15ffb12680c (patch) | |
tree | 3e1038849d9973af20f41b98958286fce6e58195 /branding | |
parent | 5c04a9161b1b7ffa3514310a02310b620f323517 (diff) |
[pkg] fix paths to binaries in darwin/windows
Diffstat (limited to 'branding')
-rwxr-xr-x | branding/templates/makefile/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/branding/templates/makefile/Makefile b/branding/templates/makefile/Makefile index 42b1482..0a611a2 100755 --- a/branding/templates/makefile/Makefile +++ b/branding/templates/makefile/Makefile @@ -36,8 +36,8 @@ pkg_win: staging\nssm.exe staging\openvpn\openvpn.exe else pkg_win: staging/nssm.exe staging/openvpn/openvpn.exe echo "[+] building windows" - cp ../bin/bitmask-vpn staging/bitmask-vpn.exe - cp ../bin/bitmask-helper staging/bitmask_helper.exe + cp ../bin/windows/bitmask-vpn staging/bitmask-vpn.exe + cp ../bin/windows/bitmask-helper staging/bitmask_helper.exe makensis windows/$(APPNAME)-installer.nsi endif @@ -51,8 +51,8 @@ sign_win: pkg_osx: echo "[+] Building osx package..." - cp ../bin/bitmask-vpn dist/$(APPNAME).app/Contents/MacOS/ - cp ../bin/bitmask-helper dist/$(APPNAME).app/Contents/MacOS/ + cp ../bin/darwin/bitmask-vpn dist/$(APPNAME).app/Contents/MacOS/ + cp ../bin/darwin/bitmask-helper dist/$(APPNAME).app/Contents/MacOS/ cp $(STAGING)/openvpn-osx dist/$(APPNAME).app/Contents/Resources/openvpn.leap ifeq ($(SYSTEM), Darwin) osx/quickpkg --output dist/$(APPNAME)-$(VERSION)_unsigned.pkg --scripts osx/scripts/ dist/$(APPNAME).app/ |