IDE: fixed publish project examples

git-svn-id: trunk@53217 -
This commit is contained in:
mattias 2016-10-26 16:38:27 +00:00
parent eb062c92d7
commit e81a0a5b06

View File

@ -216,18 +216,18 @@ var
begin begin
// destination directories // destination directories
List:=InputHistories.HistoryLists.GetList(hlPublishProjectDestDirs,true,rltFile); List:=InputHistories.HistoryLists.GetList(hlPublishProjectDestDirs,true,rltFile);
List.AppendEntry(SetDirSeparators('$(TestDir)/publishedproject/')); List.AppendEntry(GetForcedPathDelims('$(TestDir)/publishedproject/'));
List.AppendEntry(SetDirSeparators('$(TestDir)/publishedpackage/')); List.AppendEntry(GetForcedPathDelims('$(TestDir)/publishedpackage/'));
List.AppendEntry(SetDirSeparators('$(ProjPath)/published/')); List.AppendEntry(GetForcedPathDelims('$(ProjPath)/published/'));
DestDirComboBox.Items.Assign(List); DestDirComboBox.Items.Assign(List);
// command after // command after
List:=InputHistories.HistoryLists.GetList(hlPublishProjectCommandsAfter,true,rltCaseSensitive); List:=InputHistories.HistoryLists.GetList(hlPublishProjectCommandsAfter,true,rltCaseSensitive);
List.AppendEntry(SetDirSeparators( List.AppendEntry(GetForcedPathDelims(
'tar czf $MakeFile($(ProjPublishDir)).tgz $(ProjPublishDir)')); 'tar czf $MakeFile($(ProjPublishDir)).tgz $(ProjPublishDir)'));
List.AppendEntry(SetDirSeparators( List.AppendEntry(GetForcedPathDelims(
'tar czf $(TestDir)/project.tgz -C $(TestDir) publishedproject')); 'tar czf $(TestDir)/project.tgz -C $(TestDir) publishedproject'));
List.AppendEntry(SetDirSeparators( List.AppendEntry(GetForcedPathDelims(
'tar czf $(TestDir)/package.tgz -C $(TestDir) publishedpackage')); 'tar czf $(TestDir)/package.tgz -C $(TestDir) publishedpackage'));
CommandAfterCombobox.Items.Assign(List); CommandAfterCombobox.Items.Assign(List);