Skip to content

Commit d3fee7d

Browse files
authored
[auto] update overlays
1 parent fb5a4d0 commit d3fee7d

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"dart.flutterSdkPath": "flutter/.flutter"
3+
}

fastlane/Fastfile

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,6 @@ lane :update do
2222
# "flutter update-packages", but we don't need it.
2323
flutter_root = flutter_bootstrap(flutter_channel: 'stable')
2424

25-
# Copy over .gitignore from official templates.
26-
FileUtils.cp(
27-
File.join(
28-
flutter_root,
29-
'packages/flutter_tools/templates/app/.gitignore.tmpl',
30-
),
31-
'.gitignore',
32-
)
33-
3425
Dir.chdir('fastlane') do
3526
# Upgrade current application packages (within pubspec.yaml spec).
3627
flutter(args: %w(packages upgrade))
@@ -136,7 +127,9 @@ INFO
136127

137128
project_id = "#{product}-debug-#{_github_fork_name()}"
138129
sh %w(npm install)
139-
Dir.chdir('functions') { sh %w(npm install) }
130+
if File.directory?('functions')
131+
Dir.chdir('functions') { sh %w(npm install) }
132+
end
140133
fastlane_require 'shellwords'
141134
# Give Firebase login interactive mode and do not crop lines.
142135
exec %W(npm start -- #{project_id}).shelljoin

fastlane/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ Create or migrate a debug Firebase project for this GitHub fork
3333

3434
----
3535

36-
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
36+
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
3737
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
3838
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).

flutter/fastlane/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,6 @@ Set "release" lane key to non-empty value to upload metadata.
7777

7878
----
7979

80-
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
80+
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
8181
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
8282
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).

0 commit comments

Comments
 (0)