Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
celllframe-node
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Code
Merge requests
15
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
cellframe
celllframe-node
Commits
dbb7f5bc
Commit
dbb7f5bc
authored
2 weeks ago
by
Nikolay Panko
Browse files
Options
Downloads
Patches
Plain Diff
[-] Removed extra slashes in paths
parent
43db610d
No related branches found
No related tags found
2 merge requests
!1867
Bugfix 12422
,
!1858
hotfix-15147
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
conftool/main.cpp
+3
-3
3 additions, 3 deletions
conftool/main.cpp
dist/share/default.setup
+1
-1
1 addition, 1 deletion
dist/share/default.setup
with
4 additions
and
4 deletions
conftool/main.cpp
+
3
−
3
View file @
dbb7f5bc
...
...
@@ -114,11 +114,11 @@ std::string getNodeConfigPath(std::string basepath){
#endif
#ifdef __linux__
return
"/opt/cellframe-node
/
"
;
return
"/opt/cellframe-node"
;
#endif
#ifdef __APPLE__
return
"/Library/Application Support/CellframeNode
/
"
;
return
"/Library/Application Support/CellframeNode"
;
#endif
...
...
@@ -130,7 +130,7 @@ std::string getNodeConfigPath(std::string basepath){
std
::
wstring
path
;
GetStringRegKey
(
hKey
,
L"Common Documents"
,
path
,
L""
);
std
::
string
stdpath
(
path
.
begin
(),
path
.
end
());
return
(
std
::
filesystem
::
path
{
stdpath
}
/
"cellframe-node
/
"
).
string
();
return
(
std
::
filesystem
::
path
{
stdpath
}
/
"cellframe-node"
).
string
();
#endif
}
...
...
This diff is collapsed.
Click to expand it.
dist/share/default.setup
+
1
−
1
View file @
dbb7f5bc
...
...
@@ -7,7 +7,7 @@
# Predefined variables:
# ${HOST_OS} -> Linux | Windows | Macos
# ${HOSTNAME} -> hostname of a machine
# ${CONFIGS_PATH} -> /opt/cellframe-node
/
for linux,
# ${CONFIGS_PATH} -> /opt/cellframe-node for linux,
# Common Documents (usually C:\Users\Public\Documents\cellframe-node\) for Windows
#
# fromtemplate: create and populate config from "share/configs" templates
...
...
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