From 57bbbe83fe1724f3fc42f2e26308623b8f2bdf2e Mon Sep 17 00:00:00 2001 From: Ohad Livne Date: Wed, 4 Jun 2025 22:45:05 +0300 Subject: [PATCH] Ensure the ~/Downloads/ directory exists --- .config/setup/04-install-venv.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/setup/04-install-venv.sh b/.config/setup/04-install-venv.sh index 7c29b32..95f0a60 100755 --- a/.config/setup/04-install-venv.sh +++ b/.config/setup/04-install-venv.sh @@ -1,5 +1,6 @@ #! /usr/bin/sh +mkdir -p ~/Downloads/ cd ~/Downloads/ python3 -m venv .venv . .venv/bin/activate