Skip to content

Commit 14b5b39

Browse files
committed
Fix spec file paths to be relative to packaging/ directory
1 parent 320a17a commit 14b5b39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packaging/fileshift.spec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ excluded_modules = [
2020
]
2121

2222
a = Analysis(
23-
['src/main.py'],
24-
pathex=['.'],
25-
datas=[('src', 'src')],
23+
['../src/main.py'],
24+
pathex=['..'],
25+
datas=[('../src', 'src')],
2626
hiddenimports=['src.converters', 'src.converters.base', 'src.converters.handlers', 'src.converters.operations'],
2727
excludes=excluded_modules,
2828
optimize=2,

0 commit comments

Comments
 (0)