Skip to content

Commit

Permalink
apt to apt-get (#20) (#22)
Browse files Browse the repository at this point in the history
apt is not suitable for use in scripts, use apt-get instead

(cherry picked from commit 1335585)

Co-authored-by: DasK <[email protected]>
  • Loading branch information
mergify[bot] and danidask authored Aug 30, 2021
1 parent 4b6d8aa commit 109452b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ else
fi

######## Init ########
apt update
apt install -y gcc-arm-none-eabi
apt-get update
apt-get install -y gcc-arm-none-eabi

cd /uros_ws

Expand Down Expand Up @@ -72,4 +72,4 @@ for f in $(find $(pwd) -name .git -type d); do pushd $f > /dev/null; echo $(git
######## Fix permissions ########
sudo chmod -R 777 $BASE_PATH/libmicroros/
sudo chmod -R 777 $BASE_PATH/libmicroros/include/
sudo chmod -R 777 $BASE_PATH/libmicroros/libmicroros.a
sudo chmod -R 777 $BASE_PATH/libmicroros/libmicroros.a

0 comments on commit 109452b

Please sign in to comment.