Skip to content

Commit 05e6e30

Browse files
authored
Move to direct execution of these to allow env to find php (#2415)
Sometimes folks might have php executable as php84 for example and the env command might be needed to find or resolve the php in use.
1 parent 9b6c930 commit 05e6e30

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,11 @@
127127
}
128128
},
129129
"scripts": {
130-
"translations:unused": "php bin/translations translations:unused",
131-
"translations:update:translatable": "php bin/translations translations:update:translatable",
130+
"translations:unused": "./bin/translations translations:unused",
131+
"translations:update:translatable": "./bin/translations translations:update:translatable",
132132
"clear-symfony-cache": [
133-
"php bin/console cache:clear --no-warmup",
134-
"php bin/console ssp-cache:clear --no-warmup"
133+
"./bin/console cache:clear --no-warmup",
134+
"./bin/console ssp-cache:clear --no-warmup"
135135
],
136136
"post-update-cmd": [
137137
"@clear-symfony-cache",

0 commit comments

Comments
 (0)