Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Fix typo in grep command.
  • Loading branch information
rafiramadhana committed Sep 19, 2023
1 parent 9e15b35 commit 3d7c8a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ jobs:
layerform config use-context test-local
layerform config get-contexts | tee usecontext
grep -E '^\*\s+test-local' usecontext
!grep -E '^\*\s+test-s3' usecontext
! grep -E '^\*\s+test-s3' usecontext
# switch context to test-s3
layerform config use-context test-s3
layerform config get-contexts | tee usecontext
!grep -E '^\*\s+test-local' usecontext
! grep -E '^\*\s+test-local' usecontext
grep -E '^\*\s+test-s3' usecontext
- name: Configure
Expand Down

0 comments on commit 3d7c8a7

Please sign in to comment.