Skip to content

Commit

Permalink
fixing github actions no user error
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebot committed Oct 24, 2022
1 parent bd547e7 commit 1eb90c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion onboardme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@

# user env info
HOME_DIR = getenv("HOME")
USER = getlogin()
try:
USER = getlogin()
except OSError:
pass
# run uname to get operating system and hardware info
SYSINFO = uname()
# this will be something like Darwin_x86_64
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def readme():
lic_class],
python_requires='>3.10',
keywords='onboardme, onboarding, desktop-setup, setuptools, development',
version='0.13.10_a9',
version='0.13.10_a10',
project_urls={
'Documentation': 'https://jessebot.github.io/onboardme/onboardme',
'Source': 'http://github.com/jessebot/onboardme',
Expand Down

0 comments on commit 1eb90c9

Please sign in to comment.