Skip to content

Commit

Permalink
Merge pull request doublefint#18 from SergeyMi37/master
Browse files Browse the repository at this point in the history
fixed code
  • Loading branch information
gevorg95 authored Mar 14, 2022
2 parents 9ba7573 + ec562f6 commit 35c1f69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Document name="isc-dev.ZPM">
<Module>
<Name>isc-dev</Name>
<Version>1.4.2</Version>
<Version>1.4.3</Version>
<Description>Export/Import InterSystems Data Platform development artefacts</Description>
<SourcesRoot>src</SourcesRoot>
<Packaging>module</Packaging>
Expand Down
6 changes: 3 additions & 3 deletions src/dev/code.cls
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ ClassMethod import(filemask = "*.xml;*.cls;*.mac;*.int;*.inc;*.dfi", qspec = "ck

set sc = 1, dirs = "", dir = ..workdir() $$$push(dir)
if verbose write "#; Importing from ", dir,!
do ..setIgnore(.fm)
do ..setIgnore(.fm,verbose)
for
{
$$$next(i,dir) quit:i="" quit:dir=""
Expand Down Expand Up @@ -312,7 +312,7 @@ ClassMethod inFilter(ByRef filtermask, filename) As %Boolean

/// get the filtermask for the repository.
/// looks for .gitignore file and applies all the lines to filters
ClassMethod setIgnore(ByRef filtermask)
ClassMethod setIgnore(ByRef filtermask,verbose)
{
// working with .gitignore file
// gitignore consists of masks of filtering files
Expand Down Expand Up @@ -454,7 +454,7 @@ ClassMethod importUpdated(filemask = "*.*", qspec = "cku-d", ByRef err = "", rec

set sc = 1, dirs = "", dir = ..workdir() $$$push(dir)
if verbose write "#; Importing updated from ", dir,!
do ..setIgnore(.fm)
do ..setIgnore(.fm,verbose)
for
{
$$$next(i,dir) quit:i="" quit:dir=""
Expand Down

0 comments on commit 35c1f69

Please sign in to comment.