Skip to content

Commit

Permalink
Fix a typo in the deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Garanas committed Aug 3, 2024
1 parent aac3ae7 commit 06a3d0b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-faf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
# Disable debugging statements
- name: Update references
run: |
sed -i 's/EnabledSpewing = true,/EnabledSpewing = false,/' "/lua/shared/components/DebugComponent.lua"
sed -i 's/EnabledLogging = true,/EnabledLogging = false,/' "/lua/shared/components/DebugComponent.lua"
sed -i 's/EnabledWarnings = true,/EnabledWarnings = false,/' "/lua/shared/components/DebugComponent.lua"
sed -i 's/EnabledDrawing = true,/EnabledDrawing = false,/' "/lua/shared/components/DebugComponent.lua"
sed -i 's/EnabledSpewing = true,/EnabledSpewing = false,/' "lua/shared/components/DebugComponent.lua"
sed -i 's/EnabledLogging = true,/EnabledLogging = false,/' "lua/shared/components/DebugComponent.lua"
sed -i 's/EnabledWarnings = true,/EnabledWarnings = false,/' "lua/shared/components/DebugComponent.lua"
sed -i 's/EnabledDrawing = true,/EnabledDrawing = false,/' "lua/shared/components/DebugComponent.lua"
# Update the deploy/faf branch, we force push here because
# we're not interested in fixing conflicts
Expand Down

0 comments on commit 06a3d0b

Please sign in to comment.