mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
fix unsign script
This commit is contained in:
parent
240dc888ec
commit
3293b36e0f
1 changed files with 3 additions and 1 deletions
4
contrib/build-wine/unsign.sh
Normal file → Executable file
4
contrib/build-wine/unsign.sh
Normal file → Executable file
|
@ -5,10 +5,12 @@ cd $here
|
|||
|
||||
if ! which osslsigncode > /dev/null 2>&1; then
|
||||
echo "Please install osslsigncode"
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ $# -neq 2 ]; then
|
||||
if [ $# -ne 2 ]; then
|
||||
echo "Usage: $0 signed_binary unsigned_binary"
|
||||
exit
|
||||
fi
|
||||
|
||||
out="$1-stripped.exe"
|
||||
|
|
Loading…
Add table
Reference in a new issue