Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 0 additions & 115 deletions .rwx/mint-utils.sh

This file was deleted.

4 changes: 2 additions & 2 deletions aws/install-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ To install the latest version of the AWS CLI:
```yaml
tasks:
- key: aws-cli
call: aws/install-cli 1.0.8
call: aws/install-cli 1.0.9
```

To install a specific version of the AWS CLI (only v2 of the AWS CLI is supported):

```yaml
tasks:
- key: aws-cli
call: aws/install-cli 1.0.8
call: aws/install-cli 1.0.9
with:
cli-version: "2.15.13"
```
Expand Down
111 changes: 0 additions & 111 deletions aws/install-cli/mint-utils.sh

This file was deleted.

14 changes: 7 additions & 7 deletions aws/install-cli/rwx-package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: aws/install-cli
version: 1.0.8
version: 1.0.9
description: Install the AWS CLI
source_code_url: https://github.com/rwx-cloud/packages/tree/main/aws/install-cli
issue_tracker_url: https://github.com/rwx-cloud/packages/issues
Expand All @@ -13,9 +13,9 @@ tasks:
- key: install-unzip-if-necessary
run: |
if ! command -v unzip &> /dev/null; then
source "$RWX_PACKAGE_PATH/mint-utils.sh"
if ! mint_os_package_manager_in apt; then
echo "Unsupported operating system or package manager \`$(mint_os_package_manager)\`" > "$(mktemp "$RWX_ERRORS/error-XXXX")"
source "$RWX_PACKAGE_PATH/rwx-utils.sh"
if ! rwx_os_package_manager_in apt; then
echo "Unsupported operating system or package manager \`$(rwx_os_package_manager)\`" > "$(mktemp "$RWX_ERRORS/error-XXXX")"
exit 1
fi

Expand All @@ -27,9 +27,9 @@ tasks:
- key: install-gpg-if-necessary
run: |
if ! command -v gpg &> /dev/null; then
source "$RWX_PACKAGE_PATH/mint-utils.sh"
if ! mint_os_package_manager_in apt; then
echo "Unsupported operating system or package manager \`$(mint_os_package_manager)\`" > "$(mktemp "$RWX_ERRORS/error-XXXX")"
source "$RWX_PACKAGE_PATH/rwx-utils.sh"
if ! rwx_os_package_manager_in apt; then
echo "Unsupported operating system or package manager \`$(rwx_os_package_manager)\`" > "$(mktemp "$RWX_ERRORS/error-XXXX")"
exit 1
fi

Expand Down
Loading