Skip to content

Commit

Permalink
Add Yarn installer commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Heshdude committed Aug 16, 2020
1 parent 9d494ef commit 5e5cb45
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions installers/yarn/installer.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name = "Git"
shortname = "git"
description = "Git SVM"

[apt]
sh = """
@sudo apt-get update
@sudo apt-get install git
"""

[yum]
sh = """
@sudo yum install git
"""

[pacman]
sh = """
pacman -Sy git
"""

[dnf]
sh = """
@sudo dnf install git
"""

[apk]
sh = """
@sudo apk add git
"""

0 comments on commit 5e5cb45

Please sign in to comment.