mirror of
https://github.com/netinvent/npbackup.git
synced 2025-11-24 02:20:58 +08:00
Fix compiler path for public builds
This commit is contained in:
parent
980b12f322
commit
bcb65f7d5b
1 changed files with 1 additions and 1 deletions
|
|
@ -91,7 +91,7 @@ def compile(arch="64"):
|
||||||
PACKAGE_DIR = 'npbackup'
|
PACKAGE_DIR = 'npbackup'
|
||||||
|
|
||||||
is_private = check_private_build()
|
is_private = check_private_build()
|
||||||
OUTPUT_DIR = os.path.abspath(os.path.join(BASEDIR, os.pardir, "BUILD" + "-PRIVATE" if is_private else ""))
|
OUTPUT_DIR = os.path.abspath(os.path.join(BASEDIR, os.pardir, "BUILD", "-PRIVATE" if is_private else ""))
|
||||||
|
|
||||||
if not os.path.isdir(OUTPUT_DIR):
|
if not os.path.isdir(OUTPUT_DIR):
|
||||||
os.makedirs(OUTPUT_DIR)
|
os.makedirs(OUTPUT_DIR)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue