Skip to content

Commit

Permalink
god dammit dude
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyrid19 committed Sep 9, 2024
1 parent 1045459 commit 3d3c610
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@

<!--In case you want to use the addons package-->
<haxelib name="flixel-addons" />
<haxelib name="hscript" />
<haxelib name="hscript-ex" />

<!--In case you want to use the ui package-->
<haxelib name="flixel-ui" />
Expand Down
9 changes: 7 additions & 2 deletions cmd/Main.hx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,13 @@ class Main {
else if (version != null) args = [install, lib.name, version]; // haxelib install [name] [version]
else args = [install, lib.name]; // haxelib install [name]

// Sys.println(args);
Sys.command('haxelib', args);
var quiet:Array<String>;
for (i in 0...args.length)
quiet.push(args[i]);
quiet.push('--quiet');

// Sys.println(quiet);
Sys.command('haxelib', quiet);
}
}
}
5 changes: 5 additions & 0 deletions cmd/data/haxelibs.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@
"version": "",
"git": "https://github.com/MAJigsaw77/hxdiscord_rpc"
},
{
"name": "hscript-ex",
"version": "",
"git": "https://github.com/ianharrigan/hscript-ex"
},
{
"name": "flxpartialsound",
"version": "",
Expand Down

0 comments on commit 3d3c610

Please sign in to comment.