mirror of
https://github.com/oxen-io/session-android.git
synced 2025-08-26 02:48:10 +00:00
Improve the reproducible build process.
* Moved stuff into it's own `reproducible-builds` directory. * Improved reproducible build by using a debian snapshot and more clearly listing dependencies. * Removed signing from assembleReelase. * Updated README.
This commit is contained in:
7
reproducible-builds/docker/print-versions.sh
Executable file
7
reproducible-builds/docker/print-versions.sh
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
while read dep; do
|
||||
dep_name=$(echo $dep | cut -f1 -d '=')
|
||||
version=$(dpkg -s $dep_name | grep 'Version: ' | cut -f2 -d ' ')
|
||||
echo "$dep_name=$version"
|
||||
done < $1
|
Reference in New Issue
Block a user