diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2020-04-14 20:21:28 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2020-04-30 22:10:21 +0200 |
commit | 210ea87c05a30d53ca2f96a8082d50cb422b76ce (patch) | |
tree | e91f64adc835f9c8e9abfadd5eac95d320607a34 | |
parent | 76247eeb1373684c759c1133c5928997502f3cce (diff) |
[pkg] remove nssm from build makefile
-rwxr-xr-x | branding/templates/makefile/Makefile | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/branding/templates/makefile/Makefile b/branding/templates/makefile/Makefile index e272095..859118f 100755 --- a/branding/templates/makefile/Makefile +++ b/branding/templates/makefile/Makefile @@ -28,13 +28,13 @@ endif # Windows # ----------------------------------------------------------------------------- ifeq ($(SYSTEM), Windows) -pkg_win: staging\nssm.exe staging\openvpn\openvpn.exe +pkg_win: staging\openvpn\openvpn.exe echo "[+] building windows" copy ..\bin\bitmask-vpn staging\bitmask-vpn.exe copy ..\bin\bitmask-helper staging\bitmask_helper.exe "C:\Program Files (x86)\NSIS\makensis.exe" windows/$(APPNAME)-installer.nsi else -pkg_win: staging/nssm.exe staging/openvpn/openvpn.exe +pkg_win: staging/openvpn/openvpn.exe echo "[+] building windows" cp ../bin/windows/bitmask-vpn staging/bitmask-vpn.exe cp ../bin/windows/bitmask-helper staging/bitmask_helper.exe @@ -105,16 +105,6 @@ pkg_deb: clean: rm -rf dist/ build/ -staging\nssm.exe: - xcopy /y "C:\ProgramData\chocolatey\lib\NSSM\tools\nssm.exe" $(STAGING) -staging/nssm.exe: - #wget https://nssm.cc/release/nssm-2.24.zip -O $(STAGING)/nssm.zip - #unzip $(STAGING)/nssm.zip -d $(STAGING) - #mv $(STAGING)/nssm-*/win32/nssm.exe $(STAGING) - #rm -rf $(STAGING)/nssm-* $(STAGING)/nssm.zip - # BACKUP IN CASE THE OFFICIAL SITE IS UNAVAILABLE - wget https://downloads.leap.se/thirdparty/windows/nssm.exe -O $(STAGING)/nssm.exe - staging\openvpn\openvpn.exe: if not exist staging\openvpn mkdir staging\openvpn wget https://build.openvpn.net/downloads/releases/latest/tap-windows-latest-stable.exe -O staging/openvpn/tap-windows.exe |