Skip to content

Commit

Permalink
Removes tar warnings on Linux-based runners
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkratz committed Dec 6, 2024
1 parent f3ae400 commit 187e7ce
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 187e7ce

Please sign in to comment.