Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fontane-notizbuecher
SADE-Project
Commits
e424895d
Commit
e424895d
authored
Apr 14, 2020
by
Mathias Goebel
Browse files
try copy/remove instead of single move call
parent
364c8478
Pipeline
#131081
passed with stages
in 3 minutes and 43 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
post-install.xq
View file @
e424895d
...
...
@@ -55,9 +55,9 @@ return
(: error(QName("FONTANE", "INSTALLATION"), "response from tgsearch is not satisfying.") :)
};
declare
variable
$moveProject1
:=
xmldb:
move
(
"/db/apps/fontane/sade-projects"
,
"/db"
);
declare
variable
$moveProject1
:=
xmldb:
copy-collection
(
"/db/apps/fontane/sade-projects"
,
"/db"
,
true
()
);
declare
variable
$log1
:=
util:log-system-out
(
"moved 1"
);
declare
variable
$moveProject2
:=
xmldb:
move
(
"/db/apps/fontane/system/config/db/sade-projects"
,
"/db/system/config/db"
);
declare
variable
$moveProject2
:=
xmldb:
copy-collection
(
"/db/apps/fontane/system/config/db/sade-projects"
,
"/db/system/config/db"
,
true
()
);
declare
variable
$log2
:=
util:log-system-out
(
"moved 2"
);
declare
variable
$moveProject3
:=
xmldb:move
(
"/db/apps/fontane/system/autostart"
,
"/db/system"
);
declare
variable
$log3
:=
util:log-system-out
(
"moved 3"
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment