mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 17:19:19 +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
|
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);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user