1
0
Fork 0
mirror of https://github.com/ArtemSBulgakov/buildozer-action.git synced 2024-08-16 10:09:52 +02:00

Remove spaces in the end of pattern

This commit is contained in:
Artem Bulgakov 2020-07-31 23:32:16 +03:00
parent 8a4ce47203
commit 7d23aa1967

View file

@ -11,8 +11,8 @@ order.
"""
import os
import sys
import subprocess
import sys
from os import environ as env
@ -96,6 +96,7 @@ def apply_patches():
try:
import importlib
import site
importlib.reload(site)
globals()["buildozer"] = importlib.import_module("buildozer")
except ImportError:
@ -113,12 +114,12 @@ def apply_patches():
@property
def global_buildozer_dir(self):
return join(expanduser('~'), '.buildozer')
""",
""",
f"""
@property
def global_buildozer_dir(self):
return '{os.environ["GITHUB_WORKSPACE"]}/.buildozer_global'
""",
""",
)
if new_source == source:
print(