cry sigh move on

This commit is contained in:
Samuel Attard
2024-06-15 00:12:50 -07:00
parent 684a029d92
commit 69412cb5f1
2 changed files with 6 additions and 1 deletions

View File

@@ -91,6 +91,11 @@ jobs:
GN_EXTRA_ARGS='fatal_linker_warnings=false enable_linux_installer=false'
fi
echo "GN_EXTRA_ARGS=$GN_EXTRA_ARGS" >> $GITHUB_ENV
- name: Set GN_EXTRA_ARGS for Win/cross
if: ${{ inputs.target-platform == 'windows' }}
run: |
GN_APPENDED_ARGS="$GN_EXTRA_ARGS use_v8_context_snapshot=true target_os=\"win\""
echo "GN_EXTRA_ARGS=$GN_APPENDED_ARGS" >> $GITHUB_ENV
- name: Generate DEPS Hash
run: |
node src/electron/script/generate-deps-hash.js && cat src/electron/.depshash-target

View File

@@ -71,7 +71,7 @@ move_src_dirs_if_exist() {
dirs+=('src/build/linux')
fi
for dir in $dirs
for dir in "${dirs[@]}"
do
if [ -d "$dir" ]; then
mkdir -p src_artifacts/$(dirname $dir)