use .as_posix()

This commit is contained in:
linsui 2021-06-09 13:28:37 +08:00 committed by Hans-Christoph Steiner
parent 86b053291d
commit bf9cbc87a9
2 changed files with 4 additions and 4 deletions

View file

@ -25,7 +25,7 @@ import sys
import yaml
from argparse import ArgumentParser
import logging
from pathlib import Path, PurePosixPath
from pathlib import Path
try:
from yaml import CSafeLoader as SafeLoader
@ -192,7 +192,7 @@ def main():
build.subdir = options.subdir
build.gradle = ['yes']
elif subdir:
build.subdir = str(PurePosixPath(subdir))
build.subdir = subdir.as_posix()
build.gradle = ['yes']
if options.license: