Skip to content

Commit fa5fbb6

Browse files
committed
chore: use working_directory instead of cd
1 parent f622599 commit fa5fbb6

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.circleci/config.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,9 @@ jobs:
259259
FLUTTER_GIT_URL: ssh://[email protected]/flutter/flutter.git
260260
command: flutter upgrade && flutter --version
261261
- run:
262-
name: Switch to Example app & Build app
263-
command: cd scripts && flutter build apk --debug
262+
name: Build app
263+
working_directory: example
264+
command: flutter build apk --debug
264265

265266
test_build_sample_ios:
266267
macos:
@@ -275,8 +276,9 @@ jobs:
275276
FLUTTER_GIT_URL: ssh://[email protected]/flutter/flutter.git
276277
command: flutter upgrade && flutter --version
277278
- run:
278-
name: Switch to Example app & Build app
279-
command: cd scripts && flutter build ios --simulator
279+
name: Build app
280+
working_directory: example
281+
command: flutter build ios --simulator
280282

281283
release:
282284
macos:

0 commit comments

Comments
 (0)