Skip to content
This repository has been archived by the owner on Feb 8, 2022. It is now read-only.

Commit

Permalink
fix: fontbakery use v0.7.31
Browse files Browse the repository at this point in the history
  • Loading branch information
wayne-shih committed Jan 8, 2021
1 parent 04c76cd commit b57ce87
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 22 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

# `@wcys-co/fontbakery`

## v1.0.0

- install fontbakery script change to constant v0.7.31
- rename dir to point to `wcys-co/fontbakery`
- fork f-actions/font-bakery @ [`2c72f0a`](https://github.com/f-actions/font-bakery/tree/2c72f0a16da75a29beb080f0641ba6301d694cdf)

# `@f-actions/font-bakery`

## v1.0.2

- documentation updates
Expand Down
12 changes: 1 addition & 11 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3250,17 +3250,7 @@ async function run() {
// Install fontbakery
// ==================
try {
if (fbVersion === "latest") {
await exec.exec("python -m pip install --upgrade fontbakery");
} else if (fbVersion === "master") {
await exec.exec(
"python -m pip install --upgrade git+https://github.com/googlefonts/fontbakery.git"
);
} else {
await exec.exec(
`python -m pip install --upgrade fontbakery==${fbVersion}`
);
}
await exec.exec("python -m pip install fontbakery==0.7.31");
// Show the installed version
console.log("");
console.log("Dependency versions after fontbakery installation:");
Expand Down
12 changes: 1 addition & 11 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,7 @@ async function run() {
// Install fontbakery
// ==================
try {
if (fbVersion === "latest") {
await exec.exec("python -m pip install --upgrade fontbakery");
} else if (fbVersion === "master") {
await exec.exec(
"python -m pip install --upgrade git+https://github.com/googlefonts/fontbakery.git"
);
} else {
await exec.exec(
`python -m pip install --upgrade fontbakery==${fbVersion}`
);
}
await exec.exec("python -m pip install fontbakery==0.7.31");
// Show the installed version
console.log("");
console.log("Dependency versions after fontbakery installation:");
Expand Down

0 comments on commit b57ce87

Please sign in to comment.