Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-shell
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-shell
Commits
38b8600f
Commit
38b8600f
authored
Mar 21, 2016
by
Pablo Carranza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Invert clause when checking key for clarity
parent
089df337
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
bin/authorized_keys
bin/authorized_keys
+3
-3
No files found.
bin/authorized_keys
View file @
38b8600f
...
...
@@ -18,8 +18,8 @@ require_relative "../lib/gitlab_net"
require_relative
"../lib/gitlab_keys"
authorized_key
=
GitlabNet
.
new
.
authorized_key
(
key
)
unless
authorized_key
.
nil?
puts
GitlabKey
.
new
.
key_line
(
"key-
#{
authorized_key
[
'id'
]
}
"
,
authorized_key
[
"key"
])
else
if
authorized_key
.
nil?
puts
"# No key was found for
#{
key
}
"
else
puts
GitlabKey
.
new
.
key_line
(
"key-
#{
authorized_key
[
'id'
]
}
"
,
authorized_key
[
"key"
])
end
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