Skip to content

Commit

Permalink
Fix invalid repo folder detection
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandiny committed Dec 11, 2019
1 parent f34334d commit 5bb0acb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
apt_dir = os.path.join(github_slug, apt_folder)
apt_conf_dir = os.path.join(apt_dir, 'conf')

if not os.path.isdir(apt_folder):
if not os.path.isdir(apt_dir):
logging.info('Existing repo not detected, creating new repo')
os.mkdir(apt_dir)
os.mkdir(apt_conf_dir)
Expand Down

0 comments on commit 5bb0acb

Please sign in to comment.