Skip to content

Commit 730a140

Browse files
committed
Added .nojekyll file to auto-generated API docs
1 parent 8ce8782 commit 730a140

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

doc/.nojekyll

Whitespace-only changes.

doc/build.ps1

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
$ErrorActionPreference = "Stop"
2-
pushd $(Split-Path -Path $MyInvocation.MyCommand.Definition -Parent)
2+
pushd $PSScriptRoot
33

4-
# Ensure 0install is in the PATH
4+
# Ensure 0install is in PATH
55
if (!(Get-Command 0install -ErrorAction SilentlyContinue)) {
6+
echo "Downloading 0install"
67
mkdir -Force "$env:TEMP\zero-install" | Out-Null
78
Invoke-WebRequest "https://0install.de/files/0install.exe" -OutFile "$env:TEMP\zero-install\0install.exe"
89
$env:PATH = "$env:TEMP\zero-install;$env:PATH"
@@ -13,6 +14,6 @@ mkdir ..\target\doc | Out-Null
1314

1415
0install run --batch http://repo.roscidus.com/devel/doxygen
1516

16-
cp CNAME ..\target\doc\
17+
cp .nojekyll,CNAME ..\target\doc\
1718

1819
popd

doc/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ mkdir -p ../target/doc
77

88
0install run http://repo.roscidus.com/devel/doxygen
99

10-
cp CNAME ../target/doc/
10+
cp .nojekyll CNAME ../target/doc/

0 commit comments

Comments
 (0)