Some repositories couldn't be updated, please check application logs for details.
BadCredentialsException: 401 {"message": "Bad credentials", "documentation_url": "https://docs.github.com/rest", "status": "401"}

aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--%HOME%/.bashrc9
1 files changed, 9 insertions, 0 deletions
diff --git a/%HOME%/.bashrc b/%HOME%/.bashrc
index e410cd7..164d7b1 100644
--- a/%HOME%/.bashrc
+++ b/%HOME%/.bashrc
@@ -105,3 +105,12 @@ os_is_cygwin \
if [ "$TILIX_ID" ] || [ "$VTE_VERSION" ]; then
[ -r /etc/profile.d/vte.sh ] && source /etc/profile.d/vte.sh
fi
+
+# Prevent nested ranger instances.
+ranger() {
+ if [ -z "$RANGER_LEVEL" ]; then
+ /usr/bin/ranger "$@"
+ else
+ exit
+ fi
+}