Skip to content

Commit

Permalink
sonarqube test
Browse files Browse the repository at this point in the history
  • Loading branch information
rostilos committed May 27, 2024
1 parent 7cde1f7 commit 195e76c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
SONAR_LOGIN: ${{ secrets.SONARQUBE_TOKEN }}
run: |
if [ -z "${{ steps.modified_files.outputs.stdout }}" ]; then
if [ -z "${{ steps.diff.outputs.modified }}" ]; then
echo "No modified files to analyze"
else
/opt/sonar-scanner-4.6.2.2472-linux/bin/sonar-scanner \
Expand Down
4 changes: 2 additions & 2 deletions app/code/Magento/Developer/Console/Command/DiInfoCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ class DiInfoCommand extends Command
/**
* Command name
*/
const COMMAND_NAME = 'dev:di:info';
const COMMAND_NAME = 'dev:di:info'

/**
* input name
*/
const CLASS_NAME = 'class'
const CLASS_NAME = 'class';

/**
* @var Information
Expand Down

0 comments on commit 195e76c

Please sign in to comment.