add rollup to macos build

This commit is contained in:
Ryan Holmes
2019-03-21 19:57:27 -04:00
parent 1a992a90ad
commit 7fd545aad4
2 changed files with 2 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ before_install:
- bash scripts/setup-osx.sh
install:
- export PYFA_VERSION="$(python3 scripts/dump_version.py)"
- python3 ./scripts/effect_rollup.py
- bash scripts/package-osx.sh
before_deploy:
- export RELEASE_PKG_FILE=$(ls *.deb)

View File

@@ -35,7 +35,7 @@ import_these = [
icon = os.path.join(os.getcwd(), "dist_assets", "mac", "pyfa.icns")
# Walk directories that do dynamic importing
paths = ('eos/effects', 'eos/db/migrations', 'service/conversions')
paths = ('eos/db/migrations', 'service/conversions')
for root, folders, files in chain.from_iterable(os.walk(path) for path in paths):
for file_ in files:
if file_.endswith(".py") and not file_.startswith("_"):