Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nexus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
flg_projects
nexus_vdi
nexus
Commits
7f2b14ef
Commit
7f2b14ef
authored
1 year ago
by
Florent Gluck
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a newly introduced bug in vmcreds2csv where the separator character ';' was absent.
Bumped version to 1.8.10
parent
1ecaf484
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/client/cmdVM/vmCreds2csv.go
+3
-1
3 additions, 1 deletion
src/client/cmdVM/vmCreds2csv.go
src/client/version/version.go
+1
-1
1 addition, 1 deletion
src/client/version/version.go
with
4 additions
and
2 deletions
src/client/cmdVM/vmCreds2csv.go
+
3
−
1
View file @
7f2b14ef
...
...
@@ -3,6 +3,7 @@ package cmdVM
import
(
"os"
"fmt"
"strconv"
u
"nexus-client/utils"
g
"nexus-client/globals"
)
...
...
@@ -62,7 +63,8 @@ func (cmd *Creds2csv)Run(args []string) int {
defer
f
.
Close
()
for
_
,
vm
:=
range
vms
{
_
,
err
:=
fmt
.
Fprintln
(
f
,
vm
.
ID
,
g
.
CsvFieldSeparator
,
vm
.
Name
,
g
.
CsvFieldSeparator
,
vm
.
Port
,
g
.
CsvFieldSeparator
,
vm
.
Pwd
)
sep
:=
string
(
g
.
CsvFieldSeparator
)
_
,
err
:=
fmt
.
Fprintln
(
f
,
vm
.
ID
.
String
()
+
sep
+
vm
.
Name
+
sep
+
strconv
.
Itoa
(
vm
.
Port
)
+
sep
+
vm
.
Pwd
)
if
err
!=
nil
{
u
.
PrintlnErr
(
"Error: "
+
err
.
Error
())
return
1
...
...
This diff is collapsed.
Click to expand it.
src/client/version/version.go
+
1
−
1
View file @
7f2b14ef
...
...
@@ -8,7 +8,7 @@ import (
const
(
major
=
1
minor
=
8
bugfix
=
9
bugfix
=
10
)
type
Version
struct
{
...
...
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