-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall-asciidoctor.ps1
33 lines (27 loc) · 1.03 KB
/
install-asciidoctor.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#-----------------------------------------------------------------------------
#
# Copyright (c) 2022, Thierry Lelegard
# BSD-2-Clause license, see LICENSE.txt file
#
# Download and install Asciidoctor.
# See parameters documentation in install-common.ps1.
#
#-----------------------------------------------------------------------------
[CmdletBinding(SupportsShouldProcess=$true)]
param(
[string]$Destination = "",
[switch]$ForceDownload = $false,
[switch]$GitHubActions = $false,
[switch]$NoInstall = $false,
[switch]$NoPause = $false
)
Write-Output "==== Asciidoctor download and installation procedure"
. "$PSScriptRoot\install-common.ps1"
# Need ruby gem
if (-not (Search-Path "gem") -and -not (Search-Path "gem.cmd") -and -not (Search-Path "gem.exe")) {
& "$PSScriptRoot\install-ruby.ps1" -NoPause -Destination:$Destination -ForceDownload:$ForceDownload -GitHubActions:$GitHubActions
$Path = Get-Environment "Path"
$env:Path = "${env:Path};$Path"
}
gem install asciidoctor asciidoctor-pdf
Exit-Script