Skip to content

Commit

Permalink
Fix AIX specific PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust committed Apr 10, 2024
1 parent cf4bb72 commit 848de1c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion script_templates/get_tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,11 @@ else
fi

echo "extract $d/$tarball"
tar -xzf $d/$tarball --strip-components=1
#//TEMP path on AIX are specific
os=$(uname -s)
if [[ $os == "AIX" ]]; then
tar -xzf $d/$tarball
else
tar -xzf $d/$tarball --strip-components=1
fi
echo "done"

0 comments on commit 848de1c

Please sign in to comment.