Skip to content

Commit 94b3b8a

Browse files
committed
Migrate all packages to rwx-utils.sh
1 parent f429611 commit 94b3b8a

54 files changed

Lines changed: 1877 additions & 1671 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.rwx/mint-utils.sh

Lines changed: 0 additions & 115 deletions
This file was deleted.

aws/install-cli/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ To install the latest version of the AWS CLI:
55
```yaml
66
tasks:
77
- key: aws-cli
8-
call: aws/install-cli 1.0.8
8+
call: aws/install-cli 1.0.9
99
```
1010
1111
To install a specific version of the AWS CLI (only v2 of the AWS CLI is supported):
1212
1313
```yaml
1414
tasks:
1515
- key: aws-cli
16-
call: aws/install-cli 1.0.8
16+
call: aws/install-cli 1.0.9
1717
with:
1818
cli-version: "2.15.13"
1919
```

aws/install-cli/mint-utils.sh

Lines changed: 0 additions & 111 deletions
This file was deleted.

aws/install-cli/rwx-package.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: aws/install-cli
2-
version: 1.0.8
2+
version: 1.0.9
33
description: Install the AWS CLI
44
source_code_url: https://github.com/rwx-cloud/packages/tree/main/aws/install-cli
55
issue_tracker_url: https://github.com/rwx-cloud/packages/issues
@@ -13,9 +13,9 @@ tasks:
1313
- key: install-unzip-if-necessary
1414
run: |
1515
if ! command -v unzip &> /dev/null; then
16-
source "$RWX_PACKAGE_PATH/mint-utils.sh"
17-
if ! mint_os_package_manager_in apt; then
18-
echo "Unsupported operating system or package manager \`$(mint_os_package_manager)\`" > "$(mktemp "$RWX_ERRORS/error-XXXX")"
16+
source "$RWX_PACKAGE_PATH/rwx-utils.sh"
17+
if ! rwx_os_package_manager_in apt; then
18+
echo "Unsupported operating system or package manager \`$(rwx_os_package_manager)\`" > "$(mktemp "$RWX_ERRORS/error-XXXX")"
1919
exit 1
2020
fi
2121
@@ -27,9 +27,9 @@ tasks:
2727
- key: install-gpg-if-necessary
2828
run: |
2929
if ! command -v gpg &> /dev/null; then
30-
source "$RWX_PACKAGE_PATH/mint-utils.sh"
31-
if ! mint_os_package_manager_in apt; then
32-
echo "Unsupported operating system or package manager \`$(mint_os_package_manager)\`" > "$(mktemp "$RWX_ERRORS/error-XXXX")"
30+
source "$RWX_PACKAGE_PATH/rwx-utils.sh"
31+
if ! rwx_os_package_manager_in apt; then
32+
echo "Unsupported operating system or package manager \`$(rwx_os_package_manager)\`" > "$(mktemp "$RWX_ERRORS/error-XXXX")"
3333
exit 1
3434
fi
3535

0 commit comments

Comments
 (0)