Мне нужно объединить два файла.Для этой цели я использую exec от Ant, но получаю следующую ошибку.
production:
[exec] Current OS is Windows 7
[exec] Executing 'cmd' with arguments:
[exec] 'copy /B destination\bin\installer.sh+destination.tar.gz Installer.bin'
[exec]
[exec] The ' characters around the executable and arguments are
[exec] not part of the command.
[exec] Microsoft Windows [Version 6.1.7600]
[exec] Copyright (c) 2009 Microsoft Corporation. All rights reserved.
[exec]
Задача выглядит следующим образом:
<target name="production" depends="tar" >
<exec dir="${bin}" executable="cmd">
<arg line="'copy /B destination\bin\installer.sh+destination.tar.gz Installer.bin'"/>
</exec>
</target>
Как я могу исправить эту ошибку?