We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7124fa commit 75880a2Copy full SHA for 75880a2
.gitignore
@@ -41,4 +41,4 @@ app.*.symbols
41
42
# My Custom paths
43
44
-
+.keys-n-stuff/
.keys-n-stuff.json
@@ -0,0 +1,5 @@
1
+{
2
+ "dir": "fuid",
3
+ "type": "flutter",
4
+ "repo": "git@github.com:hmziqrs/keys-n-stuff.git"
5
+}
scripts/keys-n-stuff.dart
@@ -24,7 +24,7 @@ Future<void> main() async {
24
final keysDir = Directory('.keys-n-stuff');
25
26
// Read the keys-n-stuff.json file
27
- final configFile = File('keys-n-stuff.json');
+ final configFile = File('.keys-n-stuff.json');
28
if (!await configFile.exists()) {
29
throw 'Configuration file not found';
30
}
0 commit comments