Skip to content

Commit e325cac

Browse files
quote to avoid unwanted word splitting
1 parent c6807d5 commit e325cac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/authenticateOrg/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ runs:
4949
5050
eval $command
5151
52-
if [ $(jq .status loginResult.json) == 1 ];
52+
if [ "$(jq .status loginResult.json)" == 1 ];
5353
then
5454
echo "::error title=Failed to authenticate::$(jq .message authResult.json)"
5555
rm -f ./SFDX_URL.txt

.github/workflows/buildAndPublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: |
2424
git config --global user.email "<>"
2525
git config --global user.name "GitHub Action"
26-
git config --system --add safe.directory $GITHUB_WORKSPACE
26+
git config --system --add safe.directory "$GITHUB_WORKSPACE"
2727
2828
- name: Authenticate node
2929
uses: navikt/sf-platform/.github/actions/authenticateNode@main

0 commit comments

Comments
 (0)