-
-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update
pandoc
version and improve provisioning in VMs.
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -274,8 +274,8 @@ sudo apt-get install python3-pygments -y | |
sudo apt-get install w3m -y | ||
# install latest pandoc | ||
curl -LO https://github.com/jgm/pandoc/releases/download/2.11.2/pandoc-2.11.2-1-amd64.deb | ||
sudo dpkg -i pandoc-2.11.2-1-amd64.deb | ||
curl -LO https://github.com/jgm/pandoc/releases/download/3.1.11.1/pandoc-3.1.11.1-1-amd64.deb | ||
sudo dpkg -i pandoc-3.1.11.1-1-amd64.deb | ||
# install latest bat | ||
curl -LO https://github.com/sharkdp/bat/releases/download/v0.16.0/bat_0.16.0_amd64.deb | ||
|
@@ -284,7 +284,7 @@ sudo dpkg -i bat_0.16.0_amd64.deb | |
# install latest git | ||
sudo add-apt-repository ppa:git-core/ppa | ||
sudo apt update | ||
sudo apt install git | ||
sudo apt install git -y | ||
git config --global user.name "Example Name" | ||
git config --global user.email "[email protected]" | ||
|