Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CoTA
cota-backend
Commits
5a58791e
Commit
5a58791e
authored
1 year ago
by
Lückemeyer
Browse files
Options
Download
Email Patches
Plain Diff
corrected repo copy direction
parent
bb5d5b0d
master
amg-dev-volumes
amg-svn+ssh
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/hftstuttgart/dtabackend/utils/JGitUtil.java
+1
-2
src/main/java/de/hftstuttgart/dtabackend/utils/JGitUtil.java
with
1 addition
and
2 deletions
+1
-2
src/main/java/de/hftstuttgart/dtabackend/utils/JGitUtil.java
+
1
-
2
View file @
5a58791e
...
...
@@ -58,9 +58,8 @@ public class JGitUtil {
//if an optional directory parameter was given
if
(
subDir
!=
""
)
{
targetDirectory
=
new
File
(
targetPath
);
//copy appropriate path from checkout directory to target directory
FileSystemUtils
.
copyRecursively
(
targetDirectory
,
new
File
(
checkoutDirectory
+
subDir
));
FileSystemUtils
.
copyRecursively
(
new
File
(
checkoutDirectory
+
subDir
)
,
new
File
(
targetPath
)
);
}
LOG
.
debug
(
String
.
format
(
"cloned from %s to %s"
,
config
.
group
(
1
),
targetDirectory
));
}
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Explore
Projects
Groups
Snippets