Skip to content

Commit ee02a8b

Browse files
committed
Fix shellcheck error
1 parent fa16aac commit ee02a8b

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

src/commands/authenticate_with_oidc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ steps:
1313
command: |
1414
if [ -z "$CLOUDSMITH_ORGANISATION" ]
1515
then
16-
echo "export CLOUDSMITH_ORGANISATION=\"financial-times\"" >> $BASH_ENV
16+
echo "export CLOUDSMITH_ORGANISATION=\"financial-times\"" >> "$BASH_ENV"
1717
fi
1818
- run:
1919
name: Configure Cloudsmith service
2020
command: |
21-
echo "export CLOUDSMITH_SERVICE_IDENTIFIER=\"<<parameters.service_identifier>>\"" >> $BASH_ENV
21+
echo "export CLOUDSMITH_SERVICE_IDENTIFIER=\"<<parameters.service_identifier>>\"" >> "$BASH_ENV"
2222
- run:
2323
name: Authenticate with OIDC
2424
command: <<include(scripts/authenticate_with_oidc.sh)>>

src/commands/set_env_vars_for_pip.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,11 @@ steps:
1212
service_identifier: <<parameters.service_identifier>>
1313
- run:
1414
name: Configure Cloudsmith domains
15-
command: |
16-
<<include(scripts/configure_cloudsmith_domains.sh)>>
15+
command: <<include(scripts/configure_cloudsmith_domains.sh)>>
1716
- run:
1817
name: Configure Cloudsmith repository
1918
command: |
2019
echo "export CLOUDSMITH_REPOSITORY_IDENTIFIER=\"<<parameters.repository_identifier>>\"" >> $BASH_ENV
2120
- run:
2221
name: Set environment variables for pip
23-
command: |
24-
<<include(scripts/set_env_vars_for_pip.sh)>>
22+
command: <<include(scripts/set_env_vars_for_pip.sh)>>

src/scripts/configure_cloudsmith_domains.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
if [ -z "$CLOUDSMITH_DOWNLOADS_DOMAIN" ]
44
then
5-
echo "export CLOUDSMITH_DOWNLOADS_DOMAIN=\"packages.ft.com\"" >> $BASH_ENV
5+
echo "export CLOUDSMITH_DOWNLOADS_DOMAIN=\"packages.ft.com\"" >> "$BASH_ENV"
66
fi
77

0 commit comments

Comments
 (0)