mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 08:58:23 +02:00
IDE: fixed publish project examples
git-svn-id: trunk@53217 -
This commit is contained in:
parent
eb062c92d7
commit
e81a0a5b06
@ -216,18 +216,18 @@ var
|
||||
begin
|
||||
// destination directories
|
||||
List:=InputHistories.HistoryLists.GetList(hlPublishProjectDestDirs,true,rltFile);
|
||||
List.AppendEntry(SetDirSeparators('$(TestDir)/publishedproject/'));
|
||||
List.AppendEntry(SetDirSeparators('$(TestDir)/publishedpackage/'));
|
||||
List.AppendEntry(SetDirSeparators('$(ProjPath)/published/'));
|
||||
List.AppendEntry(GetForcedPathDelims('$(TestDir)/publishedproject/'));
|
||||
List.AppendEntry(GetForcedPathDelims('$(TestDir)/publishedpackage/'));
|
||||
List.AppendEntry(GetForcedPathDelims('$(ProjPath)/published/'));
|
||||
DestDirComboBox.Items.Assign(List);
|
||||
|
||||
// command after
|
||||
List:=InputHistories.HistoryLists.GetList(hlPublishProjectCommandsAfter,true,rltCaseSensitive);
|
||||
List.AppendEntry(SetDirSeparators(
|
||||
List.AppendEntry(GetForcedPathDelims(
|
||||
'tar czf $MakeFile($(ProjPublishDir)).tgz $(ProjPublishDir)'));
|
||||
List.AppendEntry(SetDirSeparators(
|
||||
List.AppendEntry(GetForcedPathDelims(
|
||||
'tar czf $(TestDir)/project.tgz -C $(TestDir) publishedproject'));
|
||||
List.AppendEntry(SetDirSeparators(
|
||||
List.AppendEntry(GetForcedPathDelims(
|
||||
'tar czf $(TestDir)/package.tgz -C $(TestDir) publishedpackage'));
|
||||
CommandAfterCombobox.Items.Assign(List);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user