mirror of
https://github.com/oxen-io/session-android.git
synced 2025-06-08 20:58:33 +00:00

* 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.
8 lines
178 B
Bash
Executable File
8 lines
178 B
Bash
Executable File
#!/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
|