From 15403f4c278b70c703a7be71bac1cb56d36b0855 Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Tue, 22 Jul 2025 07:28:56 -0400 Subject: [PATCH] Remove deprecated script --- globalize_weather.sh | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 globalize_weather.sh diff --git a/globalize_weather.sh b/globalize_weather.sh deleted file mode 100644 index ed4c0f1..0000000 --- a/globalize_weather.sh +++ /dev/null @@ -1,17 +0,0 @@ -# globalize_weather.py -# -------------------- -# By MWC Contributors -# -# This shell shell script adds `weather` to your global PATH, so that you'll be able to -# run it from any Terminal session. If you want this, just run: -# -# source globalize_weather.sh - -CHECK=$(which weather 2>&1) -if [ $CHECK = "weather not found" ]; then - echo "The weather script was not found. Make sure you are in a Poetry shell and that you have run poetry install." -else - echo "\n# Adding path for weather" >> ~/.mwc_rc - echo "export PATH=\"$(dirname $(which weather)):\$PATH\"" >> ~/.mwc_rc - source ~/.mwc_rc -fi