Skip to content

Commit

Permalink
use correct check in if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
bedroge committed Dec 9, 2024
1 parent 061d4f0 commit 2b853ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion init/modules/EESSI/2023.06.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ whatis("URL: https://www.eessi.io/docs/")
conflict("EESSI")
local eessi_version = myModuleVersion()
local eessi_repo = "/cvmfs/software.eessi.io"
if (capture("uname -m"):gsub("\n$","") == "x86_64") then
if (capture("uname -m"):gsub("\n$","") == "riscv64") then
eessi_version = "20240402"
eessi_repo = "/cvmfs/riscv.eessi.io"
LmodMessage("RISC-V architecture detected, but there is no RISC-V support yet in the production repository.\n" ..
Expand Down

0 comments on commit 2b853ff

Please sign in to comment.