build: allow build-packages-dist.sh to be run from anywhere (#29092)
PR Close #29092
This commit is contained in:
parent
bc88816c10
commit
7a67f8935d
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
source ./scripts/package-builder.sh
|
source $(dirname $0)/package-builder.sh
|
||||||
|
|
||||||
# Build the ivy packages
|
# Build the ivy packages
|
||||||
buildTargetPackages "dist/packages-dist-ivy-aot" "aot" "Ivy AOT"
|
buildTargetPackages "dist/packages-dist-ivy-aot" "aot" "Ivy AOT"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
source ./scripts/package-builder.sh
|
source $(dirname $0)/package-builder.sh
|
||||||
|
|
||||||
# Build the legacy (view engine) npm packages into dist/packages-dist
|
# Build the legacy (view engine) npm packages into dist/packages-dist
|
||||||
buildTargetPackages "dist/packages-dist" "legacy" "Production"
|
buildTargetPackages "dist/packages-dist" "legacy" "Production"
|
||||||
|
|
Loading…
Reference in New Issue