forked from zowe/zowe-client-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·34 lines (25 loc) · 711 Bytes
/
build.sh
File metadata and controls
executable file
·34 lines (25 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
set -x
current_path=$(pwd)
src_path=${current_path}/src
cd ${src_path}
rm -r build/ dist/
rm -r core/build/ core/dist/
rm -r zos_console/build/ zos_console/dist/
rm -r zos_files/build/ zos_files/dist/
rm -r zos_jobs/build/ zos_jobs/dist/
rm -r zos_tso/build/ zos_tso/dist/
rm -r zosmf/build/ zosmf/dist/
python3 setup.py sdist bdist_wheel
cd ${src_path}/core
python3 setup.py sdist bdist_wheel
cd ${src_path}/zos_console
python3 setup.py sdist bdist_wheel
cd ${src_path}/zos_files
python3 setup.py sdist bdist_wheel
cd ${src_path}/zos_jobs
python3 setup.py sdist bdist_wheel
cd ${src_path}/zos_tso
python3 setup.py sdist bdist_wheel
cd ${src_path}/zosmf
python3 setup.py sdist bdist_wheel