Skip to content

Commit

Permalink
Add support for chaotic-aur (optional)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-hc authored Oct 4, 2023
1 parent a5214b9 commit fa542a4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion archimage-cli
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

VERSION="1.3-2"
VERSION="1.3.1"

DIR="$( cd "$( dirname "$0" )" && pwd )"

Expand Down Expand Up @@ -50,6 +50,12 @@ case "$1" in
rm -f ./$2-junest.sh.old;;
esac
echo -e "\n-----------------------------------------------------------------------\n"
read -p "◆ DO YOU WANT ENABLE CHAOTIC-AUR (y,N)? " yn
case $yn in
[Yy]* ) sed -i 's/###//g' ./$2-junest.sh;;
[Nn]*|* ) ;;
esac
echo -e "\n-----------------------------------------------------------------------\n"
read -p "◆ DO YOU WANT TO INCLUDE BINUTILS AND GZIP (y,N)? " yn
case $yn in
[Yy]* ) sed -i 's/#BASICSTUFF/BASICSTUFF/g' ./$2-junest.sh;;
Expand Down

0 comments on commit fa542a4

Please sign in to comment.