From d25b7ae2dc93a488d2ff17910af0621346915abb Mon Sep 17 00:00:00 2001 From: "Clarence \"Sparr\" Risher" Date: Sun, 18 Aug 2024 12:59:13 -0400 Subject: [PATCH] Distinguish movable vs unmovable ~/.aws paths (#421) --- programs/aws-cli.json | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/programs/aws-cli.json b/programs/aws-cli.json index 12be803..1b69408 100644 --- a/programs/aws-cli.json +++ b/programs/aws-cli.json @@ -1,9 +1,24 @@ { "files": [ { - "path": "$HOME/.aws", + "path": "$HOME/.aws/credentials", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport AWS_SHARED_CREDENTIALS_FILE=\"$XDG_CONFIG_HOME\"/aws/credentials\nexport AWS_CONFIG_FILE=\"$XDG_CONFIG_HOME\"/aws/config\n```\n" + "help": "Export the following environment variable:\n\n```bash\nexport AWS_SHARED_CREDENTIALS_FILE=\"$XDG_CONFIG_HOME\"/aws/credentials\n```\n" + }, + { + "path": "$HOME/.aws/config", + "movable": true, + "help": "Export the following environment variable:\n\n```bash\nexport AWS_CONFIG_FILE=\"$XDG_CONFIG_HOME\"/aws/config\n```\n" + }, + { + "path": "$HOME/.aws/sso", + "movable": false, + "help": "Currently unsupported.\n\n_Relevant issue:_ https://github.com/aws/aws-cli/issues/1804\n" + }, + { + "path": "$HOME/.aws/cli", + "movable": false, + "help": "Currently unsupported.\n\n_Relevant issue:_ https://github.com/aws/aws-cli/issues/1804\n" } ], "name": "aws-cli" -- 2.47.3