Skip to content

Commit

Permalink
Merge pull request #2867 from skaut/check-yarn-exit-code
Browse files Browse the repository at this point in the history
Checking return codes in app-init
  • Loading branch information
marekdedic authored Oct 11, 2024
2 parents 61aad79 + 1559027 commit ec4723f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -255,13 +255,13 @@
<copy file="app/config/config.sample.local.neon" tofile="app/config/config.local.neon"/>

<!-- Install dependencies -->
<exec command="composer install" passthru="true"/>
<exec command="yarn install" passthru="true"/>
<exec command="composer install" passthru="true" checkreturn="true"/>
<exec command="yarn install" passthru="true" checkreturn="true"/>

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

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

0 comments on commit ec4723f

Please sign in to comment.