diff options
author | Kate <26026535+provokateurin@users.noreply.github.com> | 2023-07-03 14:20:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-03 14:20:12 +0200 |
commit | fe8e2ff64bcdce9f7fad961575cd29e69ca413c2 (patch) | |
tree | 96dac88fada13c1a83506bee54cfe04fc2edc6f2 | |
parent | 67709b390a74f75f107445d7ad0d6742e1e5896b (diff) | |
parent | ab738a5b8144775771ec6f02e8defe2c4752bc1f (diff) | |
download | nextcloud-server-fe8e2ff64bcdce9f7fad961575cd29e69ca413c2.tar.gz nextcloud-server-fe8e2ff64bcdce9f7fad961575cd29e69ca413c2.zip |
Merge pull request #39120 from nextcloud/fix/psalm-disable-cache
psalm: Disable cache
-rw-r--r-- | composer.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/composer.json b/composer.json index 603bf86b7c0..b70cfcb933b 100644 --- a/composer.json +++ b/composer.json @@ -47,8 +47,8 @@ "cs:fix": "php-cs-fixer fix", "cs:check": "php-cs-fixer fix --dry-run --diff", "lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/stubs/*' -print0 | xargs -0 -n1 php -l", - "psalm": "psalm --threads=$(nproc)", - "psalm:ci": "psalm --threads=1", - "psalm:update-baseline": "psalm --threads=$(nproc) --update-baseline" + "psalm": "psalm --no-cache --threads=$(nproc)", + "psalm:ci": "psalm --no-cache --threads=1", + "psalm:update-baseline": "psalm --no-cache --threads=$(nproc) --update-baseline" } } |