Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
Add version info to syncthing build script
Browse files Browse the repository at this point in the history
  • Loading branch information
imsodin committed Feb 7, 2024
1 parent 878f31a commit ef5581c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions syncthing/build-syncthing.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@ def get_ndk_home():
'CGO_ENABLED': '1',
})

subprocess.check_call(
['go', 'version'],
env=environ, cwd=syncthing_dir)
subprocess.check_call(
['go', 'run', 'build.go', 'version'],
env=environ, cwd=syncthing_dir)
cc = os.path.join(
get_ndk_home(), "toolchains", "llvm", "prebuilt",
PLATFORM_DIRS[platform.system()], "bin",
Expand Down

0 comments on commit ef5581c

Please sign in to comment.