Skip to content

Commit

Permalink
Merge pull request #360 from Concordium/lock-py-version
Browse files Browse the repository at this point in the history
Add pyenv local version
  • Loading branch information
soerenbf authored Apr 20, 2024
2 parents 3f57f0e + 1dd66ea commit 9490222
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.10
8 changes: 4 additions & 4 deletions scripts/fileDigest.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ const { publicKeyUrl } = require('../app/constants/verification.json');
* openssl pkey -in concordium-desktop-wallet-pubkey.pem -pubout
*
* @example
* $ node ./scripts/fileDigest.js -k <path-to-private-key> [-f <path-to-file] [--verify <path-to-public-key>] [--skiprv] \
* $ node ./scripts/fileDigest.js -pk <path-to-private-key> [-f <path-to-file] [--verify <path-to-public-key>] [--skiprv] \
* [--win] [--mac] [--linux] [--all] [--dir <path-to-dir>] [--appVersion <app-version-number>]
*/

// Configuration of command line arguments
const { argv } = yargs
.option('key', {
alias: 'k',
.option('pkey', {
alias: 'pk',
description: 'File containing private key',
type: 'string',
demandOption: true,
Expand Down Expand Up @@ -73,7 +73,7 @@ const { argv } = yargs

const {
file: inputFile,
key: privateKeyPath,
pkey: privateKeyPath,
verify: verifyKeyPath,
skiprv,
win,
Expand Down

0 comments on commit 9490222

Please sign in to comment.