I am trying to upgrade from Finalbuilder 4 to Finalbuilder 5, and it seems that the Vault add action is broken. I have an Add Vault Directory with Repository Folder: $/Library/%VaultProjectName%/builds/ and Files/Folders: d:\development\***\Library\%VaultProjectName%\builds and it is issuing the following command:
Running Vault with command line : add -user "Admin" -password "******" -host "*****" -repository "****" -commit -comment "Add Release dll for version 3.8.76.21" "$/Library/*****/builds/d:\development\****\Library\****\builds\3.8.76.21"
resulting in the following error message:
usage: ADD repository_folder path_to_add [...]
Obviously the problem is that it is not ending the string for the repository folder and it is appending the file/folders to add directly to it. The command should be:
Running Vault with command line : add -user "Admin" -password "******" -host "*****" -repository "****" -commit -comment "Add Release dll for version 3.8.76.21" "$/Library/*****/builds/" "d:\development\****\Library\****\builds\3.8.76.21"
I was able to get around this by disabling the Vault Add action and creating an Execute Program Action, but it would be much nicer for the Vault Add to work correctly.