gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated: less verbosity, fix symlink d


From: gnunet
Subject: [taler-wallet-core] branch master updated: less verbosity, fix symlink direction
Date: Fri, 07 Aug 2020 08:24:51 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository wallet-core.

The following commit(s) were added to refs/heads/master by this push:
     new 08ec98af less verbosity, fix symlink direction
08ec98af is described below

commit 08ec98af77ac1bf900aa301603c8f667f9bb17b3
Author: Florian Dold <florian.dold@gmail.com>
AuthorDate: Fri Aug 7 11:54:47 2020 +0530

    less verbosity, fix symlink direction
---
 packages/taler-integrationtests/src/harness.ts | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/packages/taler-integrationtests/src/harness.ts 
b/packages/taler-integrationtests/src/harness.ts
index 8a2436a4..9e1faf5c 100644
--- a/packages/taler-integrationtests/src/harness.ts
+++ b/packages/taler-integrationtests/src/harness.ts
@@ -705,7 +705,6 @@ export class ExchangeService implements 
ExchangeServiceInterface {
       try {
         console.log("pinging exchange");
         const resp = await axios.get(url);
-        console.log(resp.data);
         return;
       } catch (e) {
         console.log("exchange not ready:", e.toString());
@@ -836,7 +835,6 @@ export class MerchantService {
       try {
         console.log("pinging merchant");
         const resp = await axios.get(url);
-        console.log(resp.data);
         return;
       } catch (e) {
         console.log("merchant not ready", e.toString());
@@ -871,8 +869,9 @@ function updateCurrentSymlink(testDir: string): void {
     // Ignore
   }
   try {
-    fs.symlinkSync(currLink, testDir);
+    fs.symlinkSync(testDir, currLink);
   } catch (e) {
+    console.log(e);
     // Ignore
   }
 }

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]