|
|
|||
File indexing completed on 2026-04-09 07:58:22
0001 #!/bin/bash 0002 set -m 0003 for package in common workflow client main doma atlas website monitor prompt ; 0004 do 0005 python3 -m pip install $package/dist/*.whl 2>/dev/null || python3 -m pip install $package/dist/*.tar.gz 0006 done 0007 0008 # Generate Apache httpd *.install_template files with paths resolved from the 0009 # *installed* Python environment (sys.prefix, site-packages, etc.). 0010 # This must run AFTER pip install so the paths are those of the target env, 0011 # not the temporary build environment. 0012 echo "Generating httpd conf .install_template files ..." 0013 python3 "$(python3 -c 'import sys; print(sys.prefix)')/tools/env/setup_httpd_conf.py" || true
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|