Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Requirements Manager
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container Registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSS
Utilities
Requirements Manager
Commits
7204b59e
Verified
Commit
7204b59e
authored
2 years ago
by
Volker Schukai
Browse files
Options
Downloads
Patches
Plain Diff
chore: commit save point
parent
71344ee9
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+4
-2
4 additions, 2 deletions
README.md
application/source/files.go
+2
-5
2 additions, 5 deletions
application/source/files.go
release.json
+1
-1
1 addition, 1 deletion
release.json
with
7 additions
and
8 deletions
README.md
+
4
−
2
View file @
7204b59e
...
...
@@ -325,5 +325,7 @@ Individual LaTeX commands can be looked up here:
## Change Log
-
Version 1.0.25 (20220622174620)
-
Added support for
`gitlab sync`
command
\ No newline at end of file
-
Version 1.0
-
Bug fixes
-
Added support for
`gitlab sync`
command
-
initial release
\ No newline at end of file
This diff is collapsed.
Click to expand it.
application/source/files.go
+
2
−
5
View file @
7204b59e
...
...
@@ -14,13 +14,11 @@ import (
//
func
collectStructureFromFiles
(
directory
string
)
(
error
,
map
[
string
]
*
requirement
)
{
cleanedDirectory
:=
path
.
Clean
(
directory
)
cleanedDirectory
,
err
:=
filepath
.
Abs
(
path
.
Clean
(
directory
)
)
pageMap
:=
make
(
map
[
string
]
*
requirement
)
//pageMap := []requirement{}
err
:=
filepath
.
Walk
(
cleanedDirectory
,
err
=
filepath
.
Walk
(
cleanedDirectory
,
func
(
current
string
,
info
os
.
FileInfo
,
err
error
)
error
{
if
err
!=
nil
{
return
err
...
...
@@ -47,7 +45,6 @@ func collectStructureFromFiles(directory string) (error, map[string]*requirement
if
err
!=
nil
{
printWarning
(
"the file contains structural errors. check the YAML and if necessary the template."
,
cleanedPath
,
err
)
return
nil
}
bd
:=
[]
byte
(
cleanedDirectory
)
...
...
This diff is collapsed.
Click to expand it.
release.json
+
1
−
1
View file @
7204b59e
{
"version"
:
"1.0.3
4
"
"version"
:
"1.0.3
5
"
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment