Skip to content

Commit

Permalink
sudo command removed because it isn't necessary.
Browse files Browse the repository at this point in the history
  • Loading branch information
benycze committed Apr 24, 2024
1 parent e2420ff commit 4792e27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/build-new-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ BDW_DEPS_PACKAGES="gtkwave graphviz emacs vim-gtk"
DOC_BUILD_PACKAGES="texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-font-utils texlive-fonts-extra"

echo "Checkinstall is required ..."
sudo apt-get install -y checkinstall
apt-get install -y checkinstall

echo "Installing packages ..."
sudo apt-get install -y $BUILD_PACKAGES $BSC_DEPS_PACKAGES $BDW_DEPS_PACKAGES
apt-get install -y $BUILD_PACKAGES $BSC_DEPS_PACKAGES $BDW_DEPS_PACKAGES

if [ $DOC_EN -eq 1 ]; then
echo "Installing LaTeX packages ..."
sudo apt-get install -y $DOC_BUILD_PACKAGES
apt-get install -y $DOC_BUILD_PACKAGES
fi

# Common build root directory
Expand Down

0 comments on commit 4792e27

Please sign in to comment.