From 26f04d0a5c39fe84e4d2ca90270c4190b4eb5c02 Mon Sep 17 00:00:00 2001
From: Olivier Dion <olivier.dion@savoirfairelinux.com>
Date: Tue, 12 Oct 2021 12:32:57 -0400
Subject: [PATCH] agent: Remove junks

Change-Id: I09876059293d18e25c34e755deafba8d224dc740
---
 test/agent/tools/make-account-archive | 25 -------------------------
 1 file changed, 25 deletions(-)
 delete mode 100755 test/agent/tools/make-account-archive

diff --git a/test/agent/tools/make-account-archive b/test/agent/tools/make-account-archive
deleted file mode 100755
index 982a940377..0000000000
--- a/test/agent/tools/make-account-archive
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-tmp=$(mktemp --directory)
-
-export XDG_CONFIG_HOME=$tmp
-export XDG_CACHE_HOME=$tmp
-export XDG_DATA_HOME=$tmp
-
-archive=$1
-
-inputs=$(mktemp --suffix=.scm)
-outputs=$(mktemp)
-
-cat -> "$inputs" <<EOF
-(agent:ensure-account)
-(agent->archive "${archive}")
-EOF
-
-JAMI_LOG_FILE="$outputs" ./agent "$inputs"
-
-grep AGENT "$outputs"
-
-rm "$inputs"
-rm "$outputs"
-rm -rf "$tmp"
-- 
GitLab