Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
ca50f0d8
Commit
ca50f0d8
authored
Apr 12, 2016
by
Jeromy Johnson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2497 from noffle/init_check
Makes repo existance check more sensitive.
parents
6c8bebbe
fa006350
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
9 deletions
+1
-9
repo/fsrepo/fsrepo.go
repo/fsrepo/fsrepo.go
+1
-9
No files found.
repo/fsrepo/fsrepo.go
View file @
ca50f0d8
...
...
@@ -580,13 +580,5 @@ func IsInitialized(path string) bool {
// isInitializedUnsynced reports whether the repo is initialized. Caller must
// hold the packageLock.
func
isInitializedUnsynced
(
repoPath
string
)
bool
{
if
!
configIsInitialized
(
repoPath
)
{
return
false
}
if
!
util
.
FileExists
(
filepath
.
Join
(
repoPath
,
leveldbDirectory
))
{
return
false
}
return
true
return
configIsInitialized
(
repoPath
)
}
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