We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97fcd6f commit 6004d84Copy full SHA for 6004d84
.github/workflows/release.yml
@@ -180,15 +180,15 @@ jobs:
180
COREDGST=$CORE.dgst
181
for METHOD in {"md5","sha1","sha256","sha512"}
182
do
183
- openssl dgst -$METHOD $CORE | sed 's/([^)]*)//g' | tr -d ' ' >>$COREDGST
+ openssl dgst -$METHOD $CORE | sed 's/([^)]*)//g' >>$COREDGST
184
done
185
186
popd || exit 1
187
FILE=./Xray-$ASSET_NAME.zip
188
DGST=$FILE.dgst
189
190
191
- openssl dgst -$METHOD $FILE | sed 's/([^)]*)//g' | tr -d ' ' >>$DGST
+ openssl dgst -$METHOD $FILE | sed 's/([^)]*)//g' >>$DGST
192
193
194
- name: Change the name
0 commit comments