Skip to content

Commit

Permalink
Update archimage-cli
Browse files Browse the repository at this point in the history
Fix: template was too short
  • Loading branch information
ivan-hc authored Jul 9, 2023
1 parent 18a2cad commit 9522d34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions archimage-cli
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

VERSION="1.0~1"
VERSION="1.0.1"

case "$1" in

Expand Down Expand Up @@ -33,7 +33,7 @@ case "$1" in
mv ./$2-junest.sh ./$2-junest.sh.old
sed -n '1,4p' ./$2-junest.sh.old >> ./$2-junest.sh
echo 'BIN="'$response'"' >> ./$2-junest.sh
sed -n '6,100p' ./$2-junest.sh.old >> ./$2-junest.sh
sed -n '6,200p' ./$2-junest.sh.old >> ./$2-junest.sh
rm -f ./$2-junest.sh.old;;
esac
echo -e "\n-----------------------------------------------------------------------\n"
Expand All @@ -43,7 +43,7 @@ case "$1" in
mv ./$2-junest.sh ./$2-junest.sh.old
sed -n '1,5p' ./$2-junest.sh.old >> ./$2-junest.sh
echo 'DEPENDENCES="'$RESPONSE'"' >> ./$2-junest.sh
sed -n '7,100p' ./$2-junest.sh.old >> ./$2-junest.sh
sed -n '7,200p' ./$2-junest.sh.old >> ./$2-junest.sh
rm -f ./$2-junest.sh.old;;
esac
chmod a+x ./$2-junest.sh
Expand Down

0 comments on commit 9522d34

Please sign in to comment.