File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed
Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ deb $MIRROR $SUITE-backports main restricted universe multiverse
5858
5959EOF
6060# clean any archive if exits
61- apt clean
61+ apt-get clean
6262
6363}
6464
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ deb $MIRROR $SUITE-backports main restricted universe multiverse
5858
5959EOF
6060# clean any archive if exits
61- apt clean
61+ apt-get clean
6262
6363}
6464
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ deb $MIRROR $SUITE-backports main restricted universe multiverse
5858
5959EOF
6060# clean any archive if exits
61- apt clean
61+ apt-get clean
6262
6363}
6464
Original file line number Diff line number Diff line change 16161717
1818 - name : Satify Dependencies
19- run : sudo apt update; sudo apt install git build-essential binfmt-support qemu-user-static debootstrap -y
19+ run : sudo apt-get update; sudo apt-get install git build-essential binfmt-support qemu-user-static debootstrap -y
2020
2121 - name : Trigger fs-cook
2222 run : sudo bash .github/scripts/build-impish.sh
50505151
5252 - name : Satify Dependencies
53- run : sudo apt update; sudo apt install git build-essential binfmt-support qemu-user-static debootstrap -y
53+ run : sudo apt-get update; sudo apt-get install git build-essential binfmt-support qemu-user-static debootstrap -y
5454
5555 - name : Trigger fs-cook
5656 run : sudo bash .github/scripts/build-hirsute.sh
83838484
8585 - name : Satify Dependencies
86- run : sudo apt update; sudo apt install git build-essential binfmt-support qemu-user-static debootstrap -y
86+ run : sudo apt-get update; sudo apt-get install git build-essential binfmt-support qemu-user-static debootstrap -y
8787
8888 - name : Trigger fs-cook
8989 run : sudo bash .github/scripts/build-jammy.sh
Original file line number Diff line number Diff line change @@ -445,9 +445,9 @@ run_cmd() {
445445install_pkg ()
446446{
447447 pkg_name=" $* "
448- run_cmd " apt update"
449- run_cmd " apt install -y $pkg_name " || warn " Couldn't install $pkg_name "
450- run_cmd " apt clean"
448+ run_cmd " apt-get update"
449+ run_cmd " apt-get install -y $pkg_name " || warn " Couldn't install $pkg_name "
450+ run_cmd " apt-get clean"
451451}
452452
453453banner
You can’t perform that action at this time.
0 commit comments