Skip to content

Commit 86fc85e

Browse files
Simplify dev.nix (#2267)
I was being over ambitious with attempting to automatically `flutter pub get` all the things. Turns out, can't subshell in `dev.nix` ## Pre-launch Checklist - [ ] I read the [Effective Dart: Style] _recently_, and have followed its advice. - [ ] I signed the [CLA]. - [ ] I updated/added relevant documentation (doc comments with `///`). - [ ] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-devrel channel on [Discord]. <!-- Links --> [Effective Dart: Style]: https://dart.dev/guides/language/effective-dart/style [CLA]: https://cla.developers.google.com/ [Discord]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md
1 parent e0208d8 commit 86fc85e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.idx/dev.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
workspace = {
2222
# Runs when a workspace is first created
2323
onCreate = {
24-
updateStable = "flutter channel stable && flutter upgrade && for dir in `find . -name pubspec.yaml -exec dirname {} \; | sort`; do pushd $dir ; flutter pub get; popd; done";
24+
updateStable = "flutter channel stable && flutter upgrade";
2525
};
2626
};
2727
};

0 commit comments

Comments
 (0)