Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
c49531f0
Unverified
Commit
c49531f0
authored
Aug 30, 2022
by
Kevin Chisholm
Committed by
GitHub
Aug 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Conductor] Prefer ssh over https (#110591)
parent
f15f9aa2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
start.dart
dev/conductor/core/lib/src/start.dart
+2
-2
start_test.dart
dev/conductor/core/test/start_test.dart
+2
-2
No files found.
dev/conductor/core/lib/src/start.dart
View file @
c49531f0
...
...
@@ -134,13 +134,13 @@ class StartCommand extends Command<void> {
platform
.
environment
,
)!;
final
String
frameworkMirror
=
'
https://github.com/
$githubUsername
/flutter.git'
;
'
git@github.com:
$githubUsername
/flutter.git'
;
final
String
engineUpstream
=
getValueFromEnvOrArgs
(
kEngineUpstreamOption
,
argumentResults
,
platform
.
environment
,
)!;
final
String
engineMirror
=
'
https://github.com/
$githubUsername
/engine.git'
;
final
String
engineMirror
=
'
git@github.com:
$githubUsername
/engine.git'
;
final
String
candidateBranch
=
getValueFromEnvOrArgs
(
kCandidateOption
,
argumentResults
,
...
...
dev/conductor/core/test/start_test.dart
View file @
c49531f0
...
...
@@ -24,8 +24,8 @@ void main() {
const
String
checkoutsParentDirectory
=
'
$flutterRoot
/dev/tools/'
;
const
String
githubUsername
=
'user'
;
const
String
frameworkMirror
=
'
https://github.com/
$githubUsername
/flutter.git'
;
const
String
engineMirror
=
'
https://github.com/
$githubUsername
/engine.git'
;
'
git@github.com:
$githubUsername
/flutter.git'
;
const
String
engineMirror
=
'
git@github.com:
$githubUsername
/engine.git'
;
const
String
candidateBranch
=
'flutter-1.2-candidate.3'
;
const
String
releaseChannel
=
'beta'
;
const
String
revision
=
'abcd1234'
;
...
...
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