mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 13:05:51 +03:00
Install inkscape via mac builder script if not present
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
705cb09d8d
commit
eb7929ace6
1 changed files with 11 additions and 0 deletions
|
@ -60,3 +60,14 @@ if commandExists("brew") {
|
|||
}
|
||||
print("Brew installed.")
|
||||
}
|
||||
|
||||
if commandExists("inkscape") {
|
||||
print("Inkscape is installed.")
|
||||
} else {
|
||||
guard shell("brew install inkscape") == 0 else {
|
||||
print("Failed to install Inkscape.")
|
||||
exit(1)
|
||||
}
|
||||
print("Inkscape installed.")
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue