File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
$ErrorActionPreference = " Stop"
2
- pushd $ ( Split-Path - Path $MyInvocation .MyCommand.Definition - Parent)
2
+ pushd $PSScriptRoot
3
3
4
- # Ensure 0install is in the PATH
4
+ # Ensure 0install is in PATH
5
5
if (! (Get-Command 0install - ErrorAction SilentlyContinue)) {
6
+ echo " Downloading 0install"
6
7
mkdir - Force " $env: TEMP \zero-install" | Out-Null
7
8
Invoke-WebRequest " https://0install.de/files/0install.exe" - OutFile " $env: TEMP \zero-install\0install.exe"
8
9
$env: PATH = " $env: TEMP \zero-install;$env: PATH "
@@ -13,6 +14,6 @@ mkdir ..\target\doc | Out-Null
13
14
14
15
0install run -- batch http:// repo.roscidus.com / devel/ doxygen
15
16
16
- cp CNAME ..\target\doc\
17
+ cp .nojekyll , CNAME ..\target\doc\
17
18
18
19
popd
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ mkdir -p ../target/doc
7
7
8
8
0install run http://repo.roscidus.com/devel/doxygen
9
9
10
- cp CNAME ../target/doc/
10
+ cp .nojekyll CNAME ../target/doc/
You can’t perform that action at this time.
0 commit comments