fix: set the built files at the built time (#1132)
This commit is contained in:
parent
bca4eea470
commit
85126f1a7c
1 changed files with 4 additions and 0 deletions
4
build.sh
4
build.sh
|
@ -23,6 +23,8 @@ if [[ "${SHOULD_BUILD}" == "yes" ]]; then
|
|||
if [[ "${OS_NAME}" == "osx" ]]; then
|
||||
yarn gulp "vscode-darwin-${VSCODE_ARCH}-min-ci"
|
||||
|
||||
find "../VSCode-darwin-${VSCODE_ARCH}" -exec touch {} \;
|
||||
|
||||
VSCODE_PLATFORM="darwin"
|
||||
elif [[ "${OS_NAME}" == "windows" ]]; then
|
||||
. ../build/windows/rtf/make.sh
|
||||
|
@ -58,6 +60,8 @@ if [[ "${SHOULD_BUILD}" == "yes" ]]; then
|
|||
else # linux
|
||||
yarn gulp "vscode-linux-${VSCODE_ARCH}-min-ci"
|
||||
|
||||
find "../VSCode-linux-${VSCODE_ARCH}" -exec touch {} \;
|
||||
|
||||
if [[ "${SKIP_LINUX_PACKAGES}" != "True" ]]; then
|
||||
if [[ "${SHOULD_BUILD_DEB}" != "no" || "${SHOULD_BUILD_APPIMAGE}" != "no" ]]; then
|
||||
yarn gulp "vscode-linux-${VSCODE_ARCH}-build-deb"
|
||||
|
|
Loading…
Reference in a new issue