LoginSignup
0
1

More than 5 years have passed since last update.

brew でアップデートしてしまったパッケージを戻したい

Posted at

Plant UML で作成した図を更新したらレイアウトがおかしくなってしまった。

パッケージにクラスが含まれる普通のクラス図

simple.pu
skinparam monochrome true
hide circle

package "P" {
  class "A"
  class "B"
  "A" --> "B" : a >
}

class "C"
class "D"
"C" --> "D" : a >

@enduml

bug.png

パッケージ内のアイテムだけ何故か横長になってしまう

graphviz/2.40.20161221.0239 が怪しいので,graphviz/2.38.0_1 に戻してみる

brew switch [パッケージ] [バージョン] でバージョンがを指定して再インストールできるみたい

$ brew switch graphviz 2.38.0_1

直った
ok.png

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1