We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb5a4d0 commit e4ed6ccCopy full SHA for e4ed6cc
2 files changed
.vscode/settings.json
@@ -0,0 +1,3 @@
1
+{
2
+ "dart.flutterSdkPath": "flutter/.flutter"
3
+}
fastlane/Fastfile
@@ -136,7 +136,9 @@ INFO
136
137
project_id = "#{product}-debug-#{_github_fork_name()}"
138
sh %w(npm install)
139
- Dir.chdir('functions') { sh %w(npm install) }
+ if File.directory?('functions')
140
+ Dir.chdir('functions') { sh %w(npm install) }
141
+ end
142
fastlane_require 'shellwords'
143
# Give Firebase login interactive mode and do not crop lines.
144
exec %W(npm start -- #{project_id}).shelljoin
0 commit comments