taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit b4c4754008271a86147bc3f0b09ddbb502d308de
parent 477b1399ca6a47ecb219ad212271ad4857804a0c
Author: MS <ms@taler.net>
Date:   Mon, 10 May 2021 15:41:52 +0200

remove unwanted char

Diffstat:
Mpackages/taler-wallet-cli/src/assets.ts | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/packages/taler-wallet-cli/src/assets.ts b/packages/taler-wallet-cli/src/assets.ts @@ -41,10 +41,10 @@ export function resolveAsset(name: string): string { // FIXME: Take into account some ASSETS environment variable? assetPath = path.resolve(path.join(d, "..", "assets", name)); } else { - throw Error("Can't resolve asset (unknown )"); + throw Error("Can't resolve asset (unknown)"); } if (!fs.existsSync(assetPath)) { throw Error(`Asset '${name} not found'`); } return assetPath; -} -\ No newline at end of file +}