Skip to content

Commit

Permalink
continue even if removing vrtest-mui fails
Browse files Browse the repository at this point in the history
  • Loading branch information
nafg committed Nov 20, 2022
1 parent 1017070 commit b17fd98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/FacadeGeneratorPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ object FacadeGeneratorPlugin extends AutoPlugin {
val dir = autoImport.reactDocGenDir.value
FacadeGenerator.doCached[Unit](streams.value.cacheStoreFactory.make("yarn-install"), dir) {
os.proc("yarn", "remove", "--mutex", "network", "-W", "vrtest-mui")
.call(cwd = dir, stderr = os.Inherit, stdout = os.Inherit)
.call(cwd = dir, stderr = os.Inherit, stdout = os.Inherit, check = false)
val toAdd = List("@babel/[email protected]", "@babel/[email protected]")
os.proc("yarn", "add", "--mutex", "network", "-W", "-D", "react-docgen", toAdd)
.call(cwd = dir, stderr = os.Inherit, stdout = os.Inherit)
Expand Down

0 comments on commit b17fd98

Please sign in to comment.