Skip to content

Commit

Permalink
getepel: fixes (3)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafie committed Aug 16, 2023
1 parent a69f403 commit d4027cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions bin/getepel
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ install_scl() {
}

install_remi() {
if [[ $os != ol ]]; then
return
fi
if [[ $arch == aarch64 ]]; then
if (( EPEL < 9 )); then
echo "REMI: does not support aarch64"
Expand Down
2 changes: 1 addition & 1 deletion bin/getgcc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class SystemSetup(paella.Setup):
self.group_install("'Development Tools'")
if not self.modern:
return
self.run(f"{READIES}/bin/getepel")
self.run(f"{ROOT}/bin/getepel")
if self.os_ver == 9:
self.install("gcc-toolset-12")
self.install("gcc-toolset-12-libatomic-devel")
Expand Down

0 comments on commit d4027cc

Please sign in to comment.