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
9e2a83cf
Commit
9e2a83cf
authored
Sep 25, 2015
by
James Robinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix sky_tools build command to look for package-root in global args
parent
9996d425
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
build.dart
packages/flutter_tools/lib/src/build.dart
+1
-1
run_mojo.dart
packages/flutter_tools/lib/src/run_mojo.dart
+0
-1
No files found.
packages/flutter_tools/lib/src/build.dart
View file @
9e2a83cf
...
...
@@ -150,7 +150,7 @@ class BuildCommand extends Command {
await
_compileSnapshot
(
compilerPath:
argResults
[
'compiler'
],
mainPath:
argResults
[
'main'
],
packageRoot:
arg
Results
[
'package-root'
],
packageRoot:
global
Results
[
'package-root'
],
snapshotPath:
snapshotPath
);
archive
.
addFile
(
await
_createSnapshotFile
(
snapshotPath
));
...
...
packages/flutter_tools/lib/src/run_mojo.dart
View file @
9e2a83cf
...
...
@@ -27,7 +27,6 @@ class RunMojoCommand extends Command {
argParser
.
addOption
(
'app'
,
defaultsTo:
'app.flx'
);
argParser
.
addOption
(
'mojo-path'
,
help:
'Path to directory containing mojo_shell and services'
);
argParser
.
addOption
(
'package-root'
,
defaultsTo:
'packages'
);
}
Future
<
String
>
_makePathAbsolute
(
String
relativePath
)
async
{
...
...
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