build: fix build path for windows

This commit is contained in:
John McLear 2021-02-17 09:40:28 +00:00
parent 8ef0860e8b
commit 29f2cd34f0
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ fatal() { error "$@"; exit 1; }
is_cmd() { command -v "$@" >/dev/null 2>&1; }
# Move to the folder where ep-lite is installed
cd "$(dirname "$0")"/..
cd "$(cd "${0%/*}" && pwd -P)/../.."
# Is wget installed?
is_cmd wget || fatal "Please install wget"