FreeBSD update

1. run the build with gmake build on FreeBSD
2. Using env instead of direct interpreter call in head of python script - more flexible use of python scripts (there's no default symlink like python2 or python3 in FreeBSD)
3. removing full path before of 'curl' to be able to run it by the script for dependency downloads
This commit is contained in:
n-connect 2020-05-14 00:50:52 +02:00 committed by GitHub
parent c48581b22b
commit d493365afb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3.7
#
# Standalone signaling server for the Nextcloud Spreed app.
# Copyright (C) 2019 struktur AG
@ -51,7 +51,7 @@ else:
def generate_map(filename):
data = subprocess.check_output([
'/usr/bin/curl',
'curl',
'-L',
URL,
])