Compare commits

..

3 Commits

Author SHA1 Message Date
lachtan
44ee29aefc instalace nvm 2026-06-03 15:56:57 +02:00
lachtan
ecd84a2067 Cesty k dotnet tools 2026-06-03 15:56:49 +02:00
lachtan
6327bb043c Add markitdown installer script 2026-03-15 21:15:11 +01:00
3 changed files with 15 additions and 5 deletions

5
install/markitdown.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -E -o errexit -o nounset -o pipefail
uv tool install markitdown

View File

@@ -3,8 +3,13 @@
# https://github.com/nvm-sh/nvm
set -E -o errexit -o nounset -o pipefail
set -x
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
nvm install node
nvm use node
if ! can_run nvm; then
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
source "$LWS/rc/nvm.sh"
fi
if ! can_run node; then
nvm install node
nvm use node
fi

View File

@@ -1,2 +1,2 @@
prepend_path_try "$HOME/.dotnet/tools"
export DOTNET_CLI_TELEMETRY_OPTOUT=1