Skip to content

Commit cb5ed6b

Browse files
authored
Merge pull request #130 from eMoflon/hotfix/script-linux-remove-tar-warnings
Removes tar warnings on Linux-based runners
2 parents f3ae400 + 187e7ce commit cb5ed6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ setup_emoflon_headless_local_updatesite
231231
log "Clean-up Eclipse folder and extract downloaded archive."
232232
rm -rf ./eclipse/*
233233
if [[ "$OS" = "linux" ]]; then
234-
tar -xzf eclipse-modeling-$VERSION-R-linux-gtk-x86_64.tar.gz
234+
tar -xzf eclipse-modeling-$VERSION-R-linux-gtk-x86_64.tar.gz --warning=no-unknown-keyword
235235
elif [[ "$OS" = "windows" ]]; then
236236
unzip -qq -o eclipse-modeling-$VERSION-R-win32-x86_64.zip
237237
elif [[ "$OS" = "macos" ]]; then
@@ -254,7 +254,7 @@ for p in ${ORDER[@]}; do
254254
log "Skipping plug-in: $p."
255255
continue
256256
fi
257-
257+
258258
# Check if Dark Theme packages must be skipped (for CI builds = completely headless).
259259
if [[ "$p" = "theme" ]] && [[ $SKIP_THEME -eq 1 ]]; then
260260
log "Skipping plug-in: $p."

0 commit comments

Comments
 (0)