havietduc91 / experience

0 stars 0 forks source link

Experience BuildXml #35

Open havietduc91 opened 8 years ago

havietduc91 commented 8 years ago

Move

    <target name="composer-update" description="Update vendors and other dependencies">
        <exec executable="composer" failonerror="true">
            <arg value="install" />
            <arg value="-d" />
            <arg path="${basedir}/" />
        </exec>
    </target>

to

   <target name="composer-update" description="Update vendors and other dependencies">
        <exec executable="php" failonerror="true">
            <arg value="C:\ProgramData\ComposerSetup\bin\composer.phar" />
            <arg value="install" />
            <arg value="-d" />
            <arg path="${basedir}/" />
        </exec>
    </target>