We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f16df0a commit 71593c2Copy full SHA for 71593c2
1 file changed
scripts/build-dist.sh
@@ -1,13 +1,5 @@
1
#!/bin/bash
2
3
-packages=("iris" "intersystems_iris" "irisnative")
4
-for package in ${packages[@]};
5
-do
6
- rm -f ./$package
7
- package_path=`python -c "import importlib.util; print(importlib.util.find_spec('${package}').submodule_search_locations[0])"`
8
- ln -s $package_path ./$package
9
-done
10
-
11
set -eo pipefail
12
13
PROJECT="$( cd "$(dirname "$0")/.." ; pwd -P )"
@@ -25,10 +17,4 @@ mkdir -p "$PROJECT"/dist
25
17
cd "$PROJECT"
26
18
$PYTHON_BIN setup.py sdist bdist_wheel
27
19
28
29
30
- rm -f $package
31
32
-rm -rf intersystems-irispython
33
34
20
set +x
0 commit comments