diff --git a/files/atom_redhat_install.sh b/files/atom_redhat_install.sh index dcccd16..570e2d8 100644 --- a/files/atom_redhat_install.sh +++ b/files/atom_redhat_install.sh @@ -1,3 +1,5 @@ #!/bin/bash -cd /tmp && wget -q -t 5 -T 5 -w 5 -4 -nd https://atom.io/download/rpm && dnf install -y rpm && exit 0 +URLROOT="https://github.com/atom/atom/releases/download/v1.24.0" +LEPKG="atom.x86_64.rpm" +cd /tmp && wget -q -t 5 -T 5 -w 5 -4 -nd "$URLROOT/$LEPKG" && dnf install -y $LEPKG && exit 0 exit 1 \ No newline at end of file