Skip to content

Commit

Permalink
Merge pull request #130 from eMoflon/hotfix/script-linux-remove-tar-w…
Browse files Browse the repository at this point in the history
…arnings

Removes tar warnings on Linux-based runners
  • Loading branch information
maxkratz authored Dec 6, 2024
2 parents f3ae400 + 187e7ce commit cb5ed6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ setup_emoflon_headless_local_updatesite
log "Clean-up Eclipse folder and extract downloaded archive."
rm -rf ./eclipse/*
if [[ "$OS" = "linux" ]]; then
tar -xzf eclipse-modeling-$VERSION-R-linux-gtk-x86_64.tar.gz
tar -xzf eclipse-modeling-$VERSION-R-linux-gtk-x86_64.tar.gz --warning=no-unknown-keyword
elif [[ "$OS" = "windows" ]]; then
unzip -qq -o eclipse-modeling-$VERSION-R-win32-x86_64.zip
elif [[ "$OS" = "macos" ]]; then
Expand All @@ -254,7 +254,7 @@ for p in ${ORDER[@]}; do
log "Skipping plug-in: $p."
continue
fi

# Check if Dark Theme packages must be skipped (for CI builds = completely headless).
if [[ "$p" = "theme" ]] && [[ $SKIP_THEME -eq 1 ]]; then
log "Skipping plug-in: $p."
Expand Down

0 comments on commit cb5ed6b

Please sign in to comment.