Move the debian package_tool into our \tools directory.
The package_tool isn't really part of our product, so moving it to the tools directory.
This commit is contained in:
parent
0b27dba299
commit
7b09f3fcac
28 changed files with 2 additions and 1 deletions
|
@ -24,6 +24,7 @@ if [ "$OSNAME" != "ubuntu" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
PACKAGING_ROOT="$REPOROOT/packaging/debian"
|
PACKAGING_ROOT="$REPOROOT/packaging/debian"
|
||||||
|
PACKAGING_TOOL_DIR="$REPOROOT/tools/DebianPackageTool"
|
||||||
|
|
||||||
OUTPUT_DIR="$REPOROOT/artifacts"
|
OUTPUT_DIR="$REPOROOT/artifacts"
|
||||||
PACKAGE_LAYOUT_DIR="$OUTPUT_DIR/deb_intermediate"
|
PACKAGE_LAYOUT_DIR="$OUTPUT_DIR/deb_intermediate"
|
||||||
|
@ -90,7 +91,7 @@ create_debian_package(){
|
||||||
|
|
||||||
mkdir -p "$PACKAGE_OUTPUT_DIR"
|
mkdir -p "$PACKAGE_OUTPUT_DIR"
|
||||||
|
|
||||||
"$PACKAGING_ROOT/package_tool/package_tool" -i "$PACKAGE_LAYOUT_DIR" -o "$PACKAGE_OUTPUT_DIR" -v $DOTNET_CLI_VERSION -n $DOTNET_DEB_PACKAGE_NAME
|
"$PACKAGING_TOOL_DIR/package_tool" -i "$PACKAGE_LAYOUT_DIR" -o "$PACKAGE_OUTPUT_DIR" -v $DOTNET_CLI_VERSION -n $DOTNET_DEB_PACKAGE_NAME
|
||||||
}
|
}
|
||||||
|
|
||||||
test_debian_package(){
|
test_debian_package(){
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue