Last active
January 18, 2023 16:43
-
-
Save apfelchips/65d92f1b58ae48abf3f1d98b73167a31 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# docs: https://github.com/fsquillace/junest#installation | |
# git clone https://github.com/fsquillace/junest.git ~/.local/share/junest | |
if [ $BASH_VERSION ] && [ $JUNEST_ENV ]; then | |
export debian_chroot="junest" | |
fi | |
if [ ! $JUNEST_ENV ] && [ -d "$HOME/.local/share/junest/bin" ]; then | |
export PATH="$HOME/.local/share/junest/bin:$PATH" | |
fi | |
if [ ! $JUNEST_ENV ] && [ -d "$HOME/.junest/usr/bin_wrappers" ]; then | |
export PATH="$PATH:$HOME/.junest/usr/bin_wrappers" | |
fi | |
# junest autostart | |
#if [ ! $JUNEST_ENV ]; then | |
# exec junest -- bash | |
#fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment