From 2212d4362b572c2b0983b0a6cc0d011af7c19cf5 Mon Sep 17 00:00:00 2001 From: Andrew Mustea <36493562+andrewmustea@users.noreply.github.com> Date: Tue, 9 Aug 2022 06:16:10 -0700 Subject: [PATCH] add support for azure-devops (#160) - azure-cli defaults to placing its azure-devops cache into '$HOME/.azure-devops' unless the environment variable 'AZURE_DEVOPS_CACHE_DIR' is set. - azure-devops.json checks for the '~/.azure-devops' directory and suggests exporting `AZURE_DEVOPS_CACHE_DIR` as '"$XDG_CACHE_HOME"/azure-devops'. --- programs/azure-devops.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 programs/azure-devops.json diff --git a/programs/azure-devops.json b/programs/azure-devops.json new file mode 100644 index 0000000..7994a70 --- /dev/null +++ b/programs/azure-devops.json @@ -0,0 +1,10 @@ +{ + "files": [ + { + "path": "$HOME/.azure-devops", + "movable": true, + "help": "Export the following environment variables:\n\n```bash\nexport AZURE_DEVOPS_CACHE_DIR=\"$XDG_CACHE_HOME\"/azure-devops \n```\n" + } + ], + "name": "azure-devops" +} -- 2.47.3