Skip to content

Commit

Permalink
fix(gha): Stop forcing all GH Action runs to install-dist
Browse files Browse the repository at this point in the history
This is convenient sometimes, but in the event the dist package should include
things not generated by fontship or not available on the first pass, it
makes it nearly impossible to build something with fontship, then
do something else, then make the package.
  • Loading branch information
alerque committed Sep 25, 2024
1 parent 72bb07c commit 319c56f
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/make/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,6 @@ pub fn run(target: Vec<String>) -> Result<()> {
if is_glc {
targets.push(String::from("_glc"));
}
if (is_gha || is_glc)
&& targets.first().unwrap() != "debug"
&& targets.first().unwrap() != ".gitignore"
{
targets.push(String::from("install-dist"));
}
let mut process = Exec::cmd("make")
.args(&makeflags)
.args(&makefiles)
Expand Down

0 comments on commit 319c56f

Please sign in to comment.