Fix incorrect path to scripts/install.sh in lua docs build script

This commit is contained in:
peelz
2022-08-11 19:43:01 -04:00
parent 430dd9ae93
commit 1049296705
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ try {
Copy-Item -Path ./js/. -Destination ./build -Recurse -Force | Out-Null
if ((Get-Command "lua_modules/bin/ldoc" -ErrorAction SilentlyContinue) -eq $null) {
echo "ldoc not found; please run docs/scripts/install.ps1"
echo "ldoc not found; please run scripts/install.ps1"
exit 1
}

View File

@@ -6,7 +6,7 @@ cd "$DIR/.."
ldoc_path=./lua_modules/bin/ldoc
if [[ ! -x "$ldoc_path" ]]; then
echo "ldoc not found; please run docs/scripts/install.sh"
echo "ldoc not found; please run scripts/install.sh"
exit 1
fi