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
b30b9c9c
Commit
b30b9c9c
authored
Feb 25, 2014
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace shell commands with FileUtils
parent
dd703b3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
spec/support/test_env.rb
spec/support/test_env.rb
+2
-2
No files found.
spec/support/test_env.rb
View file @
b30b9c9c
...
@@ -117,7 +117,7 @@ module TestEnv
...
@@ -117,7 +117,7 @@ module TestEnv
repo
=
repo
(
namespace
,
name
)
repo
=
repo
(
namespace
,
name
)
# Symlink tmp/repositories/gitlabhq to tmp/test-git-base-path/gitlabhq
# Symlink tmp/repositories/gitlabhq to tmp/test-git-base-path/gitlabhq
system
(
"ln -s -f
#{
seed_repo_path
()
}
#{
repo
}
"
)
FileUtils
.
ln_sf
(
seed_repo_path
,
repo
)
create_satellite
(
repo
,
namespace
,
name
)
create_satellite
(
repo
,
namespace
,
name
)
end
end
...
@@ -181,7 +181,7 @@ module TestEnv
...
@@ -181,7 +181,7 @@ module TestEnv
# Symlink tmp/satellite/gitlabhq to tmp/test-git-base-path/satellite/gitlabhq, create the directory if it doesn't exist already
# Symlink tmp/satellite/gitlabhq to tmp/test-git-base-path/satellite/gitlabhq, create the directory if it doesn't exist already
satellite_dir
=
File
.
dirname
(
satellite_repo
)
satellite_dir
=
File
.
dirname
(
satellite_repo
)
FileUtils
.
mkdir_p
(
satellite_dir
)
unless
File
.
exists?
(
satellite_dir
)
FileUtils
.
mkdir_p
(
satellite_dir
)
unless
File
.
exists?
(
satellite_dir
)
system
(
"ln -s -f
#{
seed_satellite_path
}
#{
satellite_repo
}
"
)
FileUtils
.
ln_sf
(
seed_satellite_path
,
satellite_repo
)
end
end
def
create_temp_repo
(
path
)
def
create_temp_repo
(
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