1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-26 23:36:08 +03:00

Update some paths

This commit is contained in:
Tae Won Ha 2017-09-23 16:18:42 +02:00
parent f64bea5b5b
commit 746676a918
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
set -e
TOKEN=$(cat ~/.config/github.qvacua.release.token)
TOKEN=$(cat ~/.local/secrets/github.qvacua.release.token)
COMPOUND_VERSION=$1
TAG=$2

View File

@ -16,8 +16,8 @@ from datetime import datetime
from string import Template
SIGN_UPDATE = './bin/sign_update'
PRIVATE_KEY_PATH = os.path.expanduser('~/.local/data/secrets/sparkle_priv.pem')
GITHUB_TOKEN_PATH = os.path.expanduser('~/.local/data/secrets/github.qvacua.release.token')
PRIVATE_KEY_PATH = os.path.expanduser('~/.local/secrets/sparkle_priv.pem')
GITHUB_TOKEN_PATH = os.path.expanduser('~/.local/secrets/github.qvacua.release.token')
file_path = sys.argv[1]
bundle_version = sys.argv[2]