Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
87d2a763
Commit
87d2a763
authored
Jun 27, 2012
by
Dmitry Kalinkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix archiving prefix
parent
4c1f435a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
app/roles/repository.rb
app/roles/repository.rb
+4
-1
No files found.
app/roles/repository.rb
View file @
87d2a763
...
@@ -133,10 +133,13 @@ module Repository
...
@@ -133,10 +133,13 @@ module Repository
storage_path
=
File
.
join
(
Rails
.
root
,
"tmp"
,
"repositories"
,
self
.
code
)
storage_path
=
File
.
join
(
Rails
.
root
,
"tmp"
,
"repositories"
,
self
.
code
)
file_path
=
File
.
join
(
storage_path
,
file_name
)
file_path
=
File
.
join
(
storage_path
,
file_name
)
# Put files into a directory before archiving
prefix
=
self
.
code
+
"/"
# Create file if not exists
# Create file if not exists
unless
File
.
exists?
(
file_path
)
unless
File
.
exists?
(
file_path
)
FileUtils
.
mkdir_p
storage_path
FileUtils
.
mkdir_p
storage_path
file
=
self
.
repo
.
archive_to_file
(
ref
,
nil
,
file_path
)
file
=
self
.
repo
.
archive_to_file
(
ref
,
prefix
,
file_path
)
end
end
file_path
file_path
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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