Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion easybuild/tools/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -2126,7 +2126,7 @@ def check_github():
except Exception as err:
_log.warning("Exception occurred when trying to create & delete gist: %s", err)

if gist_url and re.match('https://gist.github.com/[0-9a-f]+$', gist_url):
if gist_url and re.match('https://gist.github.com/%s/[0-9a-f]+$' % github_user, gist_url):
check_res = "OK"
else:
check_res = "FAIL (gist_url: %s)" % gist_url
Expand Down