Skip to content

Commit 5bb0acb

Browse files
committed
Fix invalid repo folder detection
1 parent f34334d commit 5bb0acb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
apt_dir = os.path.join(github_slug, apt_folder)
9696
apt_conf_dir = os.path.join(apt_dir, 'conf')
9797

98-
if not os.path.isdir(apt_folder):
98+
if not os.path.isdir(apt_dir):
9999
logging.info('Existing repo not detected, creating new repo')
100100
os.mkdir(apt_dir)
101101
os.mkdir(apt_conf_dir)

0 commit comments

Comments
 (0)