Skip to content

Commit

Permalink
fix missing yocto on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
roasterdave committed Dec 21, 2022
1 parent 4f191a1 commit 198ab02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/artisan-win.spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ block_cipher = None
import os
if os.environ.get('APPVEYOR'):
ARTISAN_SRC = r'C:\projects\artisan\src'
PYTHON = r'c:\python310-x64'
PYTHON = os.environ.get('PYTHON_PATH')
else:
ARTISAN_SRC = r'C:\Users\roast\Documents\artisan-roaster-scope\src'
PYTHON = r'C:\Program Files\Python310-x64'
PYTHON = r'C:\Program Files\Python311-x64'
NAME = 'artisan'

##
Expand Down

0 comments on commit 198ab02

Please sign in to comment.