Skip to content

Commit 1559027

Browse files
committed
Checking return codes in app-init
1 parent 85a585a commit 1559027

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -255,13 +255,13 @@
255255
<copy file="app/config/config.sample.local.neon" tofile="app/config/config.local.neon"/>
256256

257257
<!-- Install dependencies -->
258-
<exec command="composer install" passthru="true"/>
259-
<exec command="yarn install" passthru="true"/>
258+
<exec command="composer install" passthru="true" checkreturn="true"/>
259+
<exec command="yarn install" passthru="true" checkreturn="true"/>
260260

261261
<!-- Build frontend assets -->
262-
<exec command="yarn build" passthru="true"/>
262+
<exec command="yarn build" passthru="true" checkreturn="true"/>
263263

264264
<!-- Prepare database schema -->
265-
<exec command="bin/console migrations:migrate --no-interaction" passthru="true"/>
265+
<exec command="bin/console migrations:migrate --no-interaction" passthru="true" checkreturn="true"/>
266266
</target>
267267
</project>

0 commit comments

Comments
 (0)