File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,13 +57,13 @@ python3 -m pip install . \
5757 --target bin/lib/ \
5858 # Needs to match the platform Splunk is built and
5959 # ran on, NOT the one you're writing your App on
60- --platform manylinux2014_x86_64 \
60+ --platform manylinux2014_aarch64 \
6161 --only-binary=:all:
6262
6363gtar --transform=' s,^,<your_app>/,' \
6464 --exclude=" __pycache__" \
65- --exclude= " .keep " \
66- -czf dist/ < your_app > .tgz .
65+ -czf dist/ < your_app > .tgz \
66+ bin default
6767
6868# `<your_app>.tgz` should be now ready in `dist/`!
6969```
Original file line number Diff line number Diff line change @@ -427,4 +427,13 @@ The files that get flagged are:
427427- ` openai/lib/.keep `
428428- ` openai/helpers/microphone.py `
429429
430- As a workaround, both of those files are not required for the App to work and can be deleted before packaging the App.
430+ As a workaround, both of those files are not required for the App to work and can be excluded when packaging the App:
431+
432+ ``` sh
433+ gtar --transform=' s,^,<your_app>/,' \
434+ --exclude=" __pycache__" \
435+ --exclude=" .keep" \
436+ --exclude=" bin/lib/openai/helpers/microphone.py" \
437+ -czf dist/< your_app> .tgz \
438+ bin default
439+ ```
You can’t perform that action at this time.
0 commit comments