mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 14:27:26 +01:00
Merge pull request #816 from MihaelaStoica/CP-15405
CP-15405: Copy all DotNetInstaller files to the local folder before b…
This commit is contained in:
commit
50b7132aa2
@ -34,11 +34,6 @@ set -eu
|
||||
|
||||
ZIP="zip -q"
|
||||
|
||||
#copy all dotNetInstaller files
|
||||
DOTNETINSTALLER_FILEPATH="$(which dotNetInstaller.exe)"
|
||||
DOTNETINSTALLER_DIRPATH=${DOTNETINSTALLER_FILEPATH%/*}
|
||||
cp -R "${DOTNETINSTALLER_DIRPATH}"/* ${DOTNETINST}
|
||||
|
||||
#archive unsigned artifacts
|
||||
mkdir_clean ${OUTPUT_DIR}/XenAdminUnsigned
|
||||
cp -R ${REPO}/* ${OUTPUT_DIR}/XenAdminUnsigned
|
||||
|
@ -166,8 +166,9 @@ version_vnccontrol_installer ${WIX}/vnccontrol.wxs
|
||||
#copy dotNetInstaller files
|
||||
DOTNETINST=${REPO}/dotNetInstaller
|
||||
cp ${MICROSOFT_DOTNET_FRAMEWORK_INSTALLER_DIR}/NDP452-KB2901954-Web.exe ${DOTNETINST}
|
||||
cp "$(which dotNetInstaller.exe)" ${DOTNETINST}
|
||||
cp "$(which InstallerLinker.exe)" ${DOTNETINST}
|
||||
DOTNETINSTALLER_FILEPATH="$(which dotNetInstaller.exe)"
|
||||
DOTNETINSTALLER_DIRPATH=${DOTNETINSTALLER_FILEPATH%/*}
|
||||
cp -R "${DOTNETINSTALLER_DIRPATH}"/* ${DOTNETINST}
|
||||
|
||||
# Collect the unsigned files, if the COLLECT_UNSIGNED_FILES is defined
|
||||
# (the variable can be set from the jenkins ui by putting "export COLLECT_UNSIGNED_FILES=1" above the call for build script)
|
||||
|
Loading…
Reference in New Issue
Block a user