Skip to content

Commit

Permalink
fix osslsigncode
Browse files Browse the repository at this point in the history
  • Loading branch information
raoulh committed Oct 30, 2017
1 parent 09cf699 commit c8db5c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/ci/funcs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ function sign_binary()
echo "Signing binary file: $1"

#sign SHA1
/usr/bin/local/osslsigncode sign \
$HOME/osslsigncode sign \
-pkcs12 $HOME/cert.p12 \
-pass $CODESIGN_WIN_PASS \
-h sha1 \
Expand All @@ -304,7 +304,7 @@ function sign_binary()
fi

#Append SHA256
/usr/bin/local/osslsigncode sign \
$HOME/osslsigncode sign \
-pkcs12 $HOME/cert.p12 \
-pass $CODESIGN_WIN_PASS \
-h sha256 \
Expand Down
3 changes: 2 additions & 1 deletion scripts/ci/linux/before_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ wget_retry https://calaos.fr/download/misc/InnoSetup5.zip -O $HOME/InnoSetup5.zi
#download our signcode tool
wget_retry https://github.com/mooltipass/osslsigncode/releases/download/1.7.1/osslsigncode_amd64.tar.xz -O $HOME/osslsigncode_amd64.tar.xz
tar xJvf $HOME/osslsigncode_amd64.tar.xz
sudo mv osslsigncode /usr/bin/local
chmod +x osslsigncode
sudo mv osslsigncode $HOME

mkdir -p "$HOME/.wine/drive_c/Program Files (x86)/"
pushd "$HOME/.wine/drive_c/Program Files (x86)/"
Expand Down

0 comments on commit c8db5c5

Please sign in to comment.