Skip to content

Commit

Permalink
Merge pull request #272 from Capsize-Games/develop
Browse files Browse the repository at this point in the history
patch for ubuntu build - missing data dir
  • Loading branch information
w4ffl35 committed Jul 9, 2023
2 parents cac823b + 53aa722 commit 28c1d19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.airunner.linux.prod.spec
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ coll = COLLECT(
shutil.copytree('/app/airunner/src/airunner/pyqt', '/app/dist/airunner/pyqt')
shutil.copyfile('/app/airunner/linux.itch.toml', '/app/dist/airunner/.itch.toml')
shutil.copytree('/app/airunner/src/airunner/src/icons', '/app/dist/airunner/src/icons')
shutil.copytree('./src/airunner/data', './dist/airunner/data')
shutil.copyfile('./src/airunner/src/icon_256.png', './dist/airunner/src/icon_256.png')
shutil.copyfile('./src/airunner/src/splashscreen.png', './dist/airunner/src/splashscreen.png')
shutil.copytree('/app/airunner/src/airunner/data', '/app/dist/airunner/data')
shutil.copyfile('/app/airunner/src/airunner/src/icon_256.png', '/app/dist/airunner/src/icon_256.png')
shutil.copyfile('/app/airunner/src/airunner/src/splashscreen.png', '/app/dist/airunner/src/splashscreen.png')

# copy sd config files
os.makedirs('/dist/airunner/diffusers/pipelines/stable_diffusion', exist_ok=True)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='airunner',
version="2.0.0",
version="2.0.1",
author="Capsize LLC",
description="A Stable Diffusion GUI",
long_description=open("README.md", "r", encoding="utf-8").read(),
Expand Down

0 comments on commit 28c1d19

Please sign in to comment.